Browse Source

do not check #6807 on eval target

Alexander Kuzmenko 7 years ago
parent
commit
b82989035a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/unit/src/unit/issues/Issue6807.hx

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

@@ -2,7 +2,7 @@ package unit.issues;
 
 
 class Issue6807 extends unit.Test {
 class Issue6807 extends unit.Test {
 	function test() {
 	function test() {
-		#if (dce != 'no')
+		#if ((dce != 'no') && !eval)
 		t(null == Type.resolveClass('unit.issues._Issue6807.ShouldBeRemovedByDce'));
 		t(null == Type.resolveClass('unit.issues._Issue6807.ShouldBeRemovedByDce'));
 		#end
 		#end
 	}
 	}