Skip to content

Commit

Permalink
[#1764] Change nose imports to stupid long-hand, as per the coding gu…
Browse files Browse the repository at this point in the history
…idelines.
  • Loading branch information
David Read committed Jun 24, 2014
1 parent 05f2af5 commit fd7d089
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ckan/new_tests/lib/search/test_index.py
@@ -1,8 +1,12 @@
import json
import nose.tools

from ckan.tests import assert_equal, assert_in, assert_not_in
import ckan.lib.search

assert_equal = nose.tools.assert_equal
assert_in = nose.tools.assert_in
assert_not_in = nose.tools.assert_not_in


class TestPackageSearchIndex:

Expand Down

0 comments on commit fd7d089

Please sign in to comment.