Skip to content

Commit

Permalink
Fix test class names.
Browse files Browse the repository at this point in the history
  • Loading branch information
rkuykendall committed Nov 7, 2016
1 parent 77c42a3 commit 90ea0d5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/cache_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ def store(self, key, value):
class NoStore:
def get(self, key):
# This method should return cahed value with key
return None
return {}


class TestComics(unittest.TestCase):
class TestCache(unittest.TestCase):
def setUp(self):
self.pub = os.getenv('PUBLIC_KEY', 'pub')
self.priv = os.getenv('PRIVATE_KEY', 'priv')
Expand Down
2 changes: 1 addition & 1 deletion tests/init_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from marvelous.exceptions import AuthenticationError


class TestComics(unittest.TestCase):
class TestInit(unittest.TestCase):
def setUp(self):
pass

Expand Down
2 changes: 1 addition & 1 deletion tests/series_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from marvelous.comics_list import ComicsList


class TestComics(unittest.TestCase):
class TestSeries(unittest.TestCase):
def setUp(self):
pub = os.getenv('PUBLIC_KEY', 'pub')
priv = os.getenv('PRIVATE_KEY', 'priv')
Expand Down

0 comments on commit 90ea0d5

Please sign in to comment.