소스 검색

fixed

svn path=/trunk/mcs/; revision=130479
Jb Evain 17 년 전
부모
커밋
a2cf970c02
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      mcs/class/System.Core/Test/System.Linq/EnumerableTest.cs

+ 1 - 2
mcs/class/System.Core/Test/System.Linq/EnumerableTest.cs

@@ -270,13 +270,12 @@ namespace MonoTests.System.Linq {
 		}
 
 		[Test]
-		[Category ("NotWorking")]
 		public void TestIntersect ()
 		{
 			int [] left = { 1, 1 }, right = { 1, 1 };
 			int [] result = { 1 };
 
-			Assert.AreSame (result, left.Intersect (right));
+			AssertAreSame (result, left.Intersect (right));
 		}
 
 		[Test]