Skip to content

Commit

Permalink
Fix an import in test_activity.py
Browse files Browse the repository at this point in the history
Follow the CKAN Coding Standards for imports
  • Loading branch information
Sean Hammond committed Oct 26, 2012
1 parent c4240fb commit 7ebf0c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ckan/tests/functional/api/test_activity.py
Expand Up @@ -4,7 +4,7 @@

from nose.plugins.skip import SkipTest

from pylons.test import pylonsapp
import pylons.test
import paste.fixture
from ckan.lib.helpers import json

Expand Down Expand Up @@ -175,7 +175,7 @@ def setup_class(self):
'id': annakarenina.id,
}
self.users = [self.sysadmin_user, self.normal_user, self.follower]
self.app = paste.fixture.TestApp(pylonsapp)
self.app = paste.fixture.TestApp(pylons.test.pylonsapp)

# Make follower follow everything else.
params = {'id': 'testsysadmin'}
Expand Down

0 comments on commit 7ebf0c1

Please sign in to comment.