summary refs log tree commit diff stats
path: root/tests/manyloc
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-11-24 11:48:23 +0100
committerAndreas Rumpf <rumpf_a@web.de>2016-11-24 11:48:23 +0100
commitbc9015df50b3d93b6cbd987cecbe4832a1be3f87 (patch)
treeb14e6fe88ffe8203a5e8e60e62dc1daee15544b6 /tests/manyloc
parent2316c71e09aef62f9f1a4897c47baccaea2623bf (diff)
downloadNim-bc9015df50b3d93b6cbd987cecbe4832a1be3f87.tar.gz
make tests green again
Diffstat (limited to 'tests/manyloc')
-rw-r--r--tests/manyloc/keineschweine/keineschweine.nim2
-rw-r--r--tests/manyloc/keineschweine/lib/vehicles.nim2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/manyloc/keineschweine/keineschweine.nim b/tests/manyloc/keineschweine/keineschweine.nim
index 49c0a2476..804a22852 100644
--- a/tests/manyloc/keineschweine/keineschweine.nim
+++ b/tests/manyloc/keineschweine/keineschweine.nim
@@ -40,7 +40,7 @@ type
     trailDelay*: float
     body: chipmunk.PBody
     shape: chipmunk.PShape
-import vehicles
+include vehicles
 const
   LGrabbable*  = (1 shl 0).TLayers
   LBorders*    = (1 shl 1).TLayers
diff --git a/tests/manyloc/keineschweine/lib/vehicles.nim b/tests/manyloc/keineschweine/lib/vehicles.nim
index ddfb43b38..e245c9e8c 100644
--- a/tests/manyloc/keineschweine/lib/vehicles.nim
+++ b/tests/manyloc/keineschweine/lib/vehicles.nim
@@ -1,6 +1,6 @@
 import
   sfml, chipmunk,
-  sg_assets, sfml_stuff, "../keineschweine"
+  sg_assets, sfml_stuff#, "../keineschweine"
 
 
 proc accel*(obj: PVehicle, dt: float) =