diff options
author | David Christiansen <DavidChristiansen@users.noreply.github.com> | 2015-01-05 17:18:33 +0000 |
---|---|---|
committer | David Christiansen <DavidChristiansen@users.noreply.github.com> | 2015-01-05 17:18:33 +0000 |
commit | ba07e47056efab8ee69194aade8516c32f5bc6d9 (patch) | |
tree | 4f08d20658cc472f20b8a933bd5b0c0d0ad897e1 /src/DotNetOpenAuth.Test/OpenId/Messages/IndirectSignedResponseTests.cs | |
parent | 3770a51d19a04be18ade75f59e0ff1687010a130 (diff) | |
parent | a83904d922d6b6e2c090dd26b46b1bce3c8d2dca (diff) | |
download | DotNetOpenAuth-ba07e47056efab8ee69194aade8516c32f5bc6d9.zip DotNetOpenAuth-ba07e47056efab8ee69194aade8516c32f5bc6d9.tar.gz DotNetOpenAuth-ba07e47056efab8ee69194aade8516c32f5bc6d9.tar.bz2 |
Merge pull request #361 from DavidChristiansen/develop
OAuth2 Example Fixes (Merged)
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/Messages/IndirectSignedResponseTests.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/Messages/IndirectSignedResponseTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/Messages/IndirectSignedResponseTests.cs b/src/DotNetOpenAuth.Test/OpenId/Messages/IndirectSignedResponseTests.cs index ae1b115..23e9864 100644 --- a/src/DotNetOpenAuth.Test/OpenId/Messages/IndirectSignedResponseTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/Messages/IndirectSignedResponseTests.cs @@ -95,7 +95,7 @@ namespace DotNetOpenAuth.Test.OpenId.Messages { responseReplay.UtcCreationDate = local; DateTime utcCreationDate = responseReplay.UtcCreationDate; Assert.AreEqual(DateTimeKind.Utc, utcCreationDate.Kind, "Local time should have been converted to universal time."); - //Assert.AreNotEqual(local.Hour, utcCreationDate.Hour, "The hour was expected to change (unless local time _is_ UTC time for this PC!)"); + //Assert.AreNotEqual(local.Hour, utcCreationDate.Hour, "The hour was expected to change (unless local time _is_ UTC time for this PC!)"); // Now try setting UTC time just to make sure it DOESN'T mangle the hour if (this.creationDate.Kind != DateTimeKind.Utc) { |