diff options
author | Aman Gupta <aman@tmm1.net> | 2015-10-02 18:20:51 -0700 |
---|---|---|
committer | Aman Gupta <aman@tmm1.net> | 2015-10-02 18:20:51 -0700 |
commit | 5b9465acf615e0513defa074673c6da46b27fe28 (patch) | |
tree | 2903208e5bf2f7277fb0058dbe728031c110346e | |
parent | 1639de0a4e18f9e055c2412efe326a1e1b904f61 (diff) | |
download | Nim-5b9465acf615e0513defa074673c6da46b27fe28.tar.gz |
fix test failures due to import errors
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | tests/manyloc/keineschweine/lib/zlib_helpers.nim | 2 | ||||
-rw-r--r-- | tests/manyloc/nake/nakefile.nim | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index c4efa61cf..ae2ac4f88 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,4 +26,6 @@ after_script: - nim e install_nimble.nims - nimble update - nimble install zip + - nimble install opengl + - nimble install sdl1 - ./koch test diff --git a/tests/manyloc/keineschweine/lib/zlib_helpers.nim b/tests/manyloc/keineschweine/lib/zlib_helpers.nim index 5241a77c0..076475964 100644 --- a/tests/manyloc/keineschweine/lib/zlib_helpers.nim +++ b/tests/manyloc/keineschweine/lib/zlib_helpers.nim @@ -1,4 +1,4 @@ -import zlib +import zip/zlib proc compress*(source: string): string = var diff --git a/tests/manyloc/nake/nakefile.nim b/tests/manyloc/nake/nakefile.nim index 6dc453e8d..2fe07ec17 100644 --- a/tests/manyloc/nake/nakefile.nim +++ b/tests/manyloc/nake/nakefile.nim @@ -1,5 +1,5 @@ import nake -import httpclient, zipfiles, times, math +import httpclient, zip/zipfiles, times, math nakeImports randomize() |