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/RelyingParty/AuthenticationRequestTests.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/RelyingParty/AuthenticationRequestTests.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs b/src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs index 97154a4..001f3fa 100644 --- a/src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs @@ -169,7 +169,7 @@ namespace DotNetOpenAuth.Test.OpenId.RelyingParty { authRequest.IsExtensionOnly = true; Assert.IsTrue(authRequest.IsExtensionOnly); var req = (SignedResponseRequest)authRequest.RedirectingResponse.OriginalMessage; - Assert.IsNotInstanceOfType(typeof(CheckIdRequest), req, "An unexpected SignedResponseRequest derived type was generated."); + Assert.IsNotInstanceOf<CheckIdRequest>(req, "An unexpected SignedResponseRequest derived type was generated."); } /// <summary> |