summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-05-28 16:19:02 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-05-28 16:19:02 -0700
commit9335c7d1d81f3fe67cb7f1c375dbfc305789c4b3 (patch)
tree967b9b043438659be7599111083a066902a1cdad /src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs
parente290521765b277368df7a8c37036f8c089d9e744 (diff)
downloadDotNetOpenAuth-9335c7d1d81f3fe67cb7f1c375dbfc305789c4b3.zip
DotNetOpenAuth-9335c7d1d81f3fe67cb7f1c375dbfc305789c4b3.tar.gz
DotNetOpenAuth-9335c7d1d81f3fe67cb7f1c375dbfc305789c4b3.tar.bz2
Fix for outgoing check_auth messages so they don't modify positive assertion messages causing invalid signatures.
Fixes Trac #198
Diffstat (limited to 'src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs b/src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs
index d556b11..60c8bc3 100644
--- a/src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs
+++ b/src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs
@@ -13,12 +13,12 @@ namespace DotNetOpenAuth.Test.Messaging.Reflection {
public class ValueMappingTests {
[TestCase, ExpectedException(typeof(ArgumentNullException))]
public void CtorNullToString() {
- new ValueMapping(null, str => new object());
+ new ValueMapping(null, null, str => new object());
}
[TestCase, ExpectedException(typeof(ArgumentNullException))]
public void CtorNullToObject() {
- new ValueMapping(obj => obj.ToString(), null);
+ new ValueMapping(obj => obj.ToString(), null, null);
}
}
}