Skip to content

Commit

Permalink
Switched to relative imports for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tooxie committed Jul 1, 2015
1 parent f01702d commit c6e1366
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/integration/resource-albums-test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from nose import tools as nose

from tests.integration.resource import ResourceTestCase
from .resource import ResourceTestCase


class AlbumResourceTestCase(ResourceTestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/resource-artists-test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from nose import tools as nose

from tests.integration.resource import ResourceTestCase
from .resource import ResourceTestCase


class ArtistResourceTestCase(ResourceTestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/resource-playlists-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from flask import json
from nose import tools as nose

from tests.integration.resource import ResourceTestCase
from .resource import ResourceTestCase


class PlaylistsResourceTestCase(ResourceTestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/resource-tracks-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from nose import tools as nose

from tests.integration.resource import ResourceTestCase
from .resource import ResourceTestCase


class TrackResourceTestCase(ResourceTestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/resource-users-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from nose import tools as nose

from shiva.auth import Roles
from tests.integration.resource import ResourceTestCase
from .resource import ResourceTestCase


class UsersResourceTestCase(ResourceTestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/statuscodes-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from nose import tools as nose

from tests.integration.resource import ResourceTestCase
from .resource import ResourceTestCase


class StatusCodesTestCase(ResourceTestCase):
Expand Down

0 comments on commit c6e1366

Please sign in to comment.