diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-11-11 20:27:50 -0800 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-11-11 20:27:50 -0800 |
commit | 3e75e9c22a07a079103b53fc38a985ab66384d0d (patch) | |
tree | 2262fbdca4a861129743e9f7784cea061bf22b06 /src/DotNetOpenAuth.Test/OpenId/ChannelElements/KeyValueFormEncodingTests.cs | |
parent | e8ab62f93adad1205fa572285a403e8b91e2ccf5 (diff) | |
download | DotNetOpenAuth-3e75e9c22a07a079103b53fc38a985ab66384d0d.zip DotNetOpenAuth-3e75e9c22a07a079103b53fc38a985ab66384d0d.tar.gz DotNetOpenAuth-3e75e9c22a07a079103b53fc38a985ab66384d0d.tar.bz2 |
Added association messages.
Diffie-Hellman associations seem to be working according to the test.
But lots of refactoring is probably in order.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/ChannelElements/KeyValueFormEncodingTests.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/ChannelElements/KeyValueFormEncodingTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/ChannelElements/KeyValueFormEncodingTests.cs b/src/DotNetOpenAuth.Test/OpenId/ChannelElements/KeyValueFormEncodingTests.cs index e625499..fff1392 100644 --- a/src/DotNetOpenAuth.Test/OpenId/ChannelElements/KeyValueFormEncodingTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/ChannelElements/KeyValueFormEncodingTests.cs @@ -67,7 +67,7 @@ namespace DotNetOpenAuth.Test.OpenId.ChannelElements { } if ((mode & TestMode.Encoder) == TestMode.Encoder) { var e = this.keyValueForm.GetBytes(dict); - Assert.IsTrue(TestUtilities.AreEquivalent(e, kvform), "Encoder did not produced expected result."); + Assert.IsTrue(MessagingUtilities.AreEquivalent(e, kvform), "Encoder did not produced expected result."); } } |