summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OAuth/ChannelElements
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-09-06 07:24:17 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-09-06 07:24:17 -0700
commitd8c635a1605d42d22125c30a275450c3dd7fb7b8 (patch)
treed6011f40510fd260b9b04d2586191965d14b11c7 /src/DotNetOpenAuth.Test/OAuth/ChannelElements
parent6d834307ab89df13ce96c49f0cc3971841e8f2db (diff)
downloadDotNetOpenAuth-d8c635a1605d42d22125c30a275450c3dd7fb7b8.zip
DotNetOpenAuth-d8c635a1605d42d22125c30a275450c3dd7fb7b8.tar.gz
DotNetOpenAuth-d8c635a1605d42d22125c30a275450c3dd7fb7b8.tar.bz2
More contracts work.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OAuth/ChannelElements')
-rw-r--r--src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs b/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
index d19d908..809fae7 100644
--- a/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
+++ b/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
@@ -41,7 +41,7 @@ namespace DotNetOpenAuth.Test.ChannelElements {
this.channel.WebRequestHandler = this.webRequestHandler;
}
- [TestMethod, ExpectedException(typeof(ArgumentException))]
+ [TestMethod, ExpectedException(typeof(ArgumentNullException))]
public void CtorNullSigner() {
new OAuthChannel(null, this.nonceStore, new InMemoryTokenManager(), new TestMessageFactory());
}