diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-25 14:48:10 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-25 14:48:10 -0700 |
commit | 55df738bb02b4a8496c09f1247c3bb081f57c7f3 (patch) | |
tree | eb9b97857e293fd29997573dd1638a929dc4ce8f /src | |
parent | e75ed6c0e43fa58e11854ace11b397bd09e096ca (diff) | |
download | DotNetOpenAuth-55df738bb02b4a8496c09f1247c3bb081f57c7f3.zip DotNetOpenAuth-55df738bb02b4a8496c09f1247c3bb081f57c7f3.tar.gz DotNetOpenAuth-55df738bb02b4a8496c09f1247c3bb081f57c7f3.tar.bz2 |
Fixed StyleCop message.v3.0.1.9115
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/IdentifierTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/IdentifierTests.cs b/src/DotNetOpenAuth.Test/OpenId/IdentifierTests.cs index 53df6c8..3e599e9 100644 --- a/src/DotNetOpenAuth.Test/OpenId/IdentifierTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/IdentifierTests.cs @@ -22,7 +22,7 @@ namespace DotNetOpenAuth.Test.OpenId { public void TryParseNoThrow() { Identifier id; Assert.IsFalse(Identifier.TryParse(null, out id)); - Assert.IsFalse(Identifier.TryParse("", out id)); + Assert.IsFalse(Identifier.TryParse(string.Empty, out id)); } [TestMethod] |