summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-12-29 20:33:18 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2010-12-29 20:33:18 -0800
commit4661dda76196bc9d26a891e920b6718c270997f7 (patch)
tree28876603e4b95e242e46e145ee707d44e6bedfa5 /src
parent3d61acf448c8a06b98fb8cc1ec16692258574002 (diff)
downloadDotNetOpenAuth-4661dda76196bc9d26a891e920b6718c270997f7.zip
DotNetOpenAuth-4661dda76196bc9d26a891e920b6718c270997f7.tar.gz
DotNetOpenAuth-4661dda76196bc9d26a891e920b6718c270997f7.tar.bz2
Attempt to make a jittery test more reliable.
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth.Test/Messaging/Bindings/StandardExpirationBindingElementTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/Messaging/Bindings/StandardExpirationBindingElementTests.cs b/src/DotNetOpenAuth.Test/Messaging/Bindings/StandardExpirationBindingElementTests.cs
index e0c2de6..84b6654 100644
--- a/src/DotNetOpenAuth.Test/Messaging/Bindings/StandardExpirationBindingElementTests.cs
+++ b/src/DotNetOpenAuth.Test/Messaging/Bindings/StandardExpirationBindingElementTests.cs
@@ -47,7 +47,7 @@ namespace DotNetOpenAuth.Test.Messaging.Bindings {
[TestCase, ExpectedException(typeof(ProtocolException))]
public void VerifyFutureTimestampIsRejected() {
this.Channel = CreateChannel(MessageProtections.Expiration);
- this.ParameterizedReceiveProtectedTest(DateTime.UtcNow + DotNetOpenAuthSection.Configuration.Messaging.MaximumClockSkew + TimeSpan.FromSeconds(1), false);
+ this.ParameterizedReceiveProtectedTest(DateTime.UtcNow + DotNetOpenAuthSection.Configuration.Messaging.MaximumClockSkew + TimeSpan.FromSeconds(2), false);
}
}
}