summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlcalabrese <lee.calabrese@gmail.com>2015-08-07 14:07:55 +0900
committerlcalabrese <lee.calabrese@gmail.com>2015-08-07 14:07:55 +0900
commit48e215eed131353b120d754b13e2228e1365f49e (patch)
treed6d509721d27f0d117457d9aaf518bc7f05de808
parentc36d5ff1305e2585dd4b063a699ca5a9e3a99dfe (diff)
downloadDotNetOpenAuth-48e215eed131353b120d754b13e2228e1365f49e.zip
DotNetOpenAuth-48e215eed131353b120d754b13e2228e1365f49e.tar.gz
DotNetOpenAuth-48e215eed131353b120d754b13e2228e1365f49e.tar.bz2
Change number of iterations on test to 100000 so we are actually measuring something significant.
-rw-r--r--src/DotNetOpenAuth.Test/Messaging/MessagingUtilitiesTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/Messaging/MessagingUtilitiesTests.cs b/src/DotNetOpenAuth.Test/Messaging/MessagingUtilitiesTests.cs
index 0a49473..081103a 100644
--- a/src/DotNetOpenAuth.Test/Messaging/MessagingUtilitiesTests.cs
+++ b/src/DotNetOpenAuth.Test/Messaging/MessagingUtilitiesTests.cs
@@ -253,7 +253,7 @@ namespace DotNetOpenAuth.Test.Messaging {
string totalmismatch = new string('B', 5000);
string almostmatch = new string('A', 4999) + 'B';
- const int Iterations = 4000;
+ const int Iterations = 100000;
var totalMismatchTimer = new Stopwatch();
totalMismatchTimer.Start();
for (int i = 0; i < Iterations; i++) {