소스 검색

use another class which does not reference Http (fix HL interpreter not supporting Socket for now)

Nicolas Cannasse 8 년 전
부모
커밋
bffc775f14
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/unit/src/unit/issues/Issue5608.hx

+ 1 - 1
tests/unit/src/unit/issues/Issue5608.hx

@@ -5,7 +5,7 @@ class Issue5608 extends unit.Test {
 
 	function test() {
 		//should not throw
-		fields = Reflect.fields(haxe.remoting.HttpConnection);
+		fields = Reflect.fields(haxe.Serializer);
 		t(true);
 	}
 }