diff options
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() |