Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jb@evain.net>2018-03-05 22:04:04 +0300
committerJb Evain <jb@evain.net>2018-03-05 22:04:04 +0300
commitb7e2d588b560cc1697fe90efad771e9447a54021 (patch)
treec2a7a1715e325737ae19e4d771392ca241176177 /Test/Mono.Cecil.Tests
parent4dc09aa199ae2766f8098ced2992c4717f196d05 (diff)
Pluralize symbols
Diffstat (limited to 'Test/Mono.Cecil.Tests')
-rw-r--r--Test/Mono.Cecil.Tests/SymbolTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Test/Mono.Cecil.Tests/SymbolTests.cs b/Test/Mono.Cecil.Tests/SymbolTests.cs
index 4d952a2..d1f239e 100644
--- a/Test/Mono.Cecil.Tests/SymbolTests.cs
+++ b/Test/Mono.Cecil.Tests/SymbolTests.cs
@@ -54,7 +54,7 @@ namespace Mono.Cecil.Tests {
[Test]
public void MdbMismatch ()
{
- Assert.Throws<SymbolNotMatchingException> (() => GetResourceModule ("mdb-mismatch.dll", new ReaderParameters { SymbolReaderProvider = new MdbReaderProvider () }));
+ Assert.Throws<SymbolsNotMatchingException> (() => GetResourceModule ("mdb-mismatch.dll", new ReaderParameters { SymbolReaderProvider = new MdbReaderProvider () }));
}
[Test]
@@ -69,7 +69,7 @@ namespace Mono.Cecil.Tests {
[Test]
public void PortablePdbMismatch ()
{
- Assert.Throws<SymbolNotMatchingException> (() => GetResourceModule ("pdb-mismatch.dll", new ReaderParameters { SymbolReaderProvider = new PortablePdbReaderProvider () }));
+ Assert.Throws<SymbolsNotMatchingException> (() => GetResourceModule ("pdb-mismatch.dll", new ReaderParameters { SymbolReaderProvider = new PortablePdbReaderProvider () }));
}
[Test]