Browse Source

let's test sys things only on sys targets

Simon Krajewski 11 years ago
parent
commit
a096ab483b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      tests/unit/unitstd/Sys.unit.hx

+ 3 - 1
tests/unit/unitstd/Sys.unit.hx

@@ -1 +1,3 @@
-(Sys.time() > 1395990000.00) == true;
+#if sys
+(Sys.time() > 1395990000.00) == true;
+#end