diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-09 09:36:16 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-09 09:36:38 -0800 |
commit | 6a04ef4cbfedbdbf77f14575e468a4786756bdf3 (patch) | |
tree | 83e751065a0e98c6f6e55dfe33aee6c10a1263e1 /src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs | |
parent | 623f8a1e53a1fd1bb58f540c226d1538dc5e86a5 (diff) | |
download | DotNetOpenAuth-6a04ef4cbfedbdbf77f14575e468a4786756bdf3.zip DotNetOpenAuth-6a04ef4cbfedbdbf77f14575e468a4786756bdf3.tar.gz DotNetOpenAuth-6a04ef4cbfedbdbf77f14575e468a4786756bdf3.tar.bz2 |
Fixed a bunch of NUnit warnings.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs b/src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs index 7de32df..5edd51f 100644 --- a/src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs @@ -155,7 +155,7 @@ namespace DotNetOpenAuth.Test.OpenId.ChannelElements { new IOpenIdMessageExtension[0]); Assert.Fail("Expected ProtocolException not thrown."); } catch (AssertionException ex) { - Assert.IsInstanceOfType(typeof(ProtocolException), ex.InnerException); + Assert.IsInstanceOf<ProtocolException>(ex.InnerException); } } |