Browse Source

(Flash8) comment Template-related test (no EReg on Flash8)

Simon Krajewski 11 years ago
parent
commit
48b6d4ad7e
1 changed files with 4 additions and 0 deletions
  1. 4 0
      tests/unit/issues/Issue2254.hx

+ 4 - 0
tests/unit/issues/Issue2254.hx

@@ -3,6 +3,8 @@ import unit.Test;
 import haxe.Template;
 
 class Issue2254 extends Test {
+	#if !flash8
+
 	function test()
 	{
 		var str = 'HI, IT IS ::if !isIt::NOT::end::';
@@ -10,4 +12,6 @@ class Issue2254 extends Test {
 		eq("HI, IT IS ", t.execute({ isIt:true }));
 		eq("HI, IT IS NOT", t.execute({ isIt:false }));
 	}
+	
+	#end
 }