소스 검색

[cs/java] adjust tests after 9203fbb5ccca437b0e0a62f93c7c80c8c017d137

Dan Korostelev 8 년 전
부모
커밋
fb12f4d778
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      tests/unit/src/unit/TestCSharp.hx
  2. 1 1
      tests/unit/src/unit/TestJava.hx

+ 1 - 1
tests/unit/src/unit/TestCSharp.hx

@@ -36,7 +36,7 @@ class TestCSharp extends Test
 	function testHaxeKeywords()
 	{
 		eq(Base._inline, 42);
-		eq(Base._callback, 43);
+		eq(Base.callback, 43);
 		eq(Base._cast, 44);
 		eq(Base._untyped, 45);
 		Base._untyped = 40;

+ 1 - 1
tests/unit/src/unit/TestJava.hx

@@ -124,7 +124,7 @@ class TestJava extends Test
 	function testHaxeKeywords()
 	{
 		eq(Base._inline, 42);
-		eq(Base._callback, 43);
+		eq(Base.callback, 43);
 		eq(Base._cast, 44);
 		eq(Base._untyped, 45);
 		eq(Base._in, 46);