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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kyte <alexmkyte@fastmail.com>2016-05-24 01:42:57 +0300
committerAlexander Kyte <alexmkyte@fastmail.com>2016-06-07 21:56:51 +0300
commitcd9dfae95226d7d202e41ee5851511ba3d102672 (patch)
treee24ec6f11a2342e8ae69e5cafe74b93289461848 /mcs/class/Mono.CSharp
parentac19ad8a47d9c92f3fa726eb2bfb43f82aa63917 (diff)
[mobile_static] Remove use of CollectionAssert, missing in nunit-lite
Diffstat (limited to 'mcs/class/Mono.CSharp')
-rw-r--r--mcs/class/Mono.CSharp/Test/Evaluator/ExpressionsTest.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mcs/class/Mono.CSharp/Test/Evaluator/ExpressionsTest.cs b/mcs/class/Mono.CSharp/Test/Evaluator/ExpressionsTest.cs
index 74fc4a03cf2..8c414dad79f 100644
--- a/mcs/class/Mono.CSharp/Test/Evaluator/ExpressionsTest.cs
+++ b/mcs/class/Mono.CSharp/Test/Evaluator/ExpressionsTest.cs
@@ -120,7 +120,8 @@ namespace MonoTests.EvaluatorTest
Evaluator.Run ("var a = new int[]{1,2,3};");
object res = Evaluator.Evaluate ("from x in a select x + 1;");
- CollectionAssert.AreEqual (new int[] { 2, 3, 4 }, ((IEnumerable<int>) res).ToArray ());
+
+ Assert.AreEqual (new int[] { 2, 3, 4 }, ((IEnumerable<int>) res).ToArray ());
}
[Test]
@@ -201,4 +202,4 @@ namespace MonoTests.EvaluatorTest
}
}
-} \ No newline at end of file
+}