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-06-01 19:40:24 +0300
committerJb Evain <jbevain@gmail.com>2015-06-01 19:40:24 +0300
commitf105aa8778f68b5b9a022f30b847db78f88a5beb (patch)
tree0324dcc2323b0be6ca75e3d64abe370218c12468
parentfd8f1b0886605234e0e045d922eea929ecacd7c6 (diff)
Fix build for older frameworks
-rw-r--r--Test/Mono.Cecil.Tests/ImportReflectionTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/Mono.Cecil.Tests/ImportReflectionTests.cs b/Test/Mono.Cecil.Tests/ImportReflectionTests.cs
index c83e5b7..b57f95e 100644
--- a/Test/Mono.Cecil.Tests/ImportReflectionTests.cs
+++ b/Test/Mono.Cecil.Tests/ImportReflectionTests.cs
@@ -130,7 +130,7 @@ namespace Mono.Cecil.Tests {
il.Emit (OpCodes.Ret);
});
- Assert.AreEqual ("", id.Method.DeclaringType.Assembly.GetName ().CultureName);
+ Assert.AreEqual ("", id.Method.DeclaringType.Assembly.GetName ().CultureInfo.Name);
}
public class Generic<T> {