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 <jbevain@gmail.com>2015-05-11 16:03:03 +0300
committerJb Evain <jbevain@gmail.com>2015-05-11 16:03:03 +0300
commite11c6424b5c5128a4afea42e6ec8f17a88feee63 (patch)
tree0e5fc3108273c71297920bafa9947ae3689d2363
parent14b76a0970ca0a2c9631ea949de5529d423fec36 (diff)
Fix tests
-rw-r--r--Test/Mono.Cecil.Tests/TypeParserTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Test/Mono.Cecil.Tests/TypeParserTests.cs b/Test/Mono.Cecil.Tests/TypeParserTests.cs
index 6b52e98..82a88b9 100644
--- a/Test/Mono.Cecil.Tests/TypeParserTests.cs
+++ b/Test/Mono.Cecil.Tests/TypeParserTests.cs
@@ -149,7 +149,7 @@ namespace Mono.Cecil.Tests {
var type = TypeParser.ParseType (module, fullname);
- Assert.AreEqual ("Bingo.Foo`1+Bar`1+Baz`1, Bingo, Culture=neutral, PublicKeyToken=null", TypeParser.ToParseable (type));
+ Assert.AreEqual ("Bingo.Foo`1+Bar`1+Baz`1, Bingo, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", TypeParser.ToParseable (type));
Assert.IsNotNull (type);
Assert.AreEqual ("Bingo", type.Scope.Name);
@@ -189,7 +189,7 @@ namespace Mono.Cecil.Tests {
var type = TypeParser.ParseType (module, fullname);
- Assert.AreEqual ("Bingo.Gazonk[], Bingo, Culture=neutral, PublicKeyToken=null", TypeParser.ToParseable (type));
+ Assert.AreEqual ("Bingo.Gazonk[], Bingo, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", TypeParser.ToParseable (type));
var array = type as ArrayType;
Assert.IsNotNull (array);