From 64e7378355454323ad9d3cc148ebac8519440e0e Mon Sep 17 00:00:00 2001 From: Jb Evain Date: Mon, 1 Jun 2015 17:02:51 +0200 Subject: Fix bogus test --- Test/Mono.Cecil.Tests/ImportReflectionTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Test/Mono.Cecil.Tests/ImportReflectionTests.cs b/Test/Mono.Cecil.Tests/ImportReflectionTests.cs index cef6d20..87d9277 100644 --- a/Test/Mono.Cecil.Tests/ImportReflectionTests.cs +++ b/Test/Mono.Cecil.Tests/ImportReflectionTests.cs @@ -195,7 +195,7 @@ namespace Mono.Cecil.Tests { il.Emit (OpCodes.Ldnull); il.Emit (OpCodes.Ldarg_1); il.Emit (OpCodes.Callvirt, module.ImportReference (typeof (Generic).GetMethod ("ComplexGenericMethod").MakeGenericMethod (typeof (int)))); - il.Emit (OpCodes.Ldfld, module.ImportReference (typeof (Generic).GetField ("Field"))); + il.Emit (OpCodes.Ldfld, module.ImportReference (typeof (Generic).GetField ("Field"))); il.Emit (OpCodes.Ret); }); -- cgit v1.2.3