diff options
author | 2015-05-12 12:22:20 +0200 | |
---|---|---|
committer | 2015-05-12 12:22:20 +0200 | |
commit | 906bb7c1ecc5c34aa93148894eef763f27eba98e (patch) | |
tree | 2f09a639cdd9e414e8f165a667c71a837288d4de /tests/test_api.py | |
parent | Revert damaged logo.png (diff) | |
download | pyload-906bb7c1ecc5c34aa93148894eef763f27eba98e.tar.xz |
Other import fixes
Diffstat (limited to 'tests/test_api.py')
-rw-r--r-- | tests/test_api.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_api.py b/tests/test_api.py index 1e02d8aa3..ca02f7a2c 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -1,9 +1,9 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -import APIExerciser +import nose -from nose.tools import nottest +import APIExerciser class TestApi(object): @@ -18,7 +18,7 @@ class TestApi(object): # takes really long, only test when needed - @nottest + @nose.tools.nottest def test_random(self): for _i in xrange(0, 100): self.api.testAPI() |