diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-09 13:31:15 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-09 13:31:15 -0800 |
commit | 3542127d4d10c75312287f68520d26fd6b60362d (patch) | |
tree | e23ed62502cdfb806e63d9e086419c149ebd3374 /src/DotNetOpenAuth.Test/OpenId/ChannelElements | |
parent | c07b4196765c601a675b07dbc71d77915c86be87 (diff) | |
parent | 6a04ef4cbfedbdbf77f14575e468a4786756bdf3 (diff) | |
download | DotNetOpenAuth-3542127d4d10c75312287f68520d26fd6b60362d.zip DotNetOpenAuth-3542127d4d10c75312287f68520d26fd6b60362d.tar.gz DotNetOpenAuth-3542127d4d10c75312287f68520d26fd6b60362d.tar.bz2 |
Merge branch 'nunit' into master-Dev10
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/ChannelElements')
-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); } } |