aboutsummaryrefslogtreecommitdiff
path: root/tests/test_pandora/test_models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_pandora/test_models.py')
-rw-r--r--tests/test_pandora/test_models.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/test_pandora/test_models.py b/tests/test_pandora/test_models.py
index 37a760f..2ae7d11 100644
--- a/tests/test_pandora/test_models.py
+++ b/tests/test_pandora/test_models.py
@@ -1,12 +1,15 @@
1from unittest import TestCase 1from unittest import TestCase
2from datetime import datetime 2from datetime import datetime
3from pandora.py2compat import Mock, patch 3from pandora.py2compat import Mock, patch
4from pandora import APIClient 4
5from pandora.models.pandora import AdItem, PlaylistModel, SearchResultItem, SearchResult 5from pandora.client import APIClient
6from pandora.errors import ParameterMissing 6from pandora.errors import ParameterMissing
7from pandora.models.pandora import SearchResult
8from pandora.models.pandora import AdItem, PlaylistModel, SearchResultItem
7 9
8import pandora.models as m 10import pandora.models as m
9 11
12
10class TestField(TestCase): 13class TestField(TestCase):
11 14
12 def test_defaults(self): 15 def test_defaults(self):