Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Mar 30, 2018
1 parent 57ee93d commit e6bcfd2
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tests/test_authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# ##################################


class AuthBadCodes(unittest.TestCase):
class TestAuthentication(unittest.TestCase):
"""Test authentication process."""
if not app_id or not app_token:
logging.critical("No API credentials set as env variables.")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# ##################################


class IsogeoChecker(unittest.TestCase):
class TestIsogeoChecker(unittest.TestCase):
"""Test authentication process."""
if not app_id or not app_token:
logging.critical("No API credentials set as env variables.")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_download_hosted.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# ##################################


class DownloadHosted(unittest.TestCase):
class TestDownloadHosted(unittest.TestCase):
"""Test download hosted data through Isogeo API."""
if not app_id or not app_token:
logging.critical("No API credentials set as env variables.")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_export_XML19139.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# ##################################


class ExportXML19139(unittest.TestCase):
class TestExportXML19139(unittest.TestCase):
"""Test search to Isogeo API."""
if not app_id or not app_token:
logging.critical("No API credentials set as env variables.")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_metadata_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
# ##################################


class MetadataModels(unittest.TestCase):
class TestMetadataModels(unittest.TestCase):
"""Test search to Isogeo API."""
if not app_id or not app_token:
logging.critical("No API credentials set as env variables.")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# ##################################


class Search(unittest.TestCase):
class TestSearch(unittest.TestCase):
"""Test search to Isogeo API."""
if not app_id or not app_secret:
logging.critical("No API credentials set as env variables.")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_translation.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
# ##################################


class IsogeoTranslator(unittest.TestCase):
class TestIsogeoTranslator(unittest.TestCase):
"""Test translation of specific words wihtin Isogeo API."""
if not app_id or not app_token:
logging.critical("No API credentials set as env variables.")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# ##################################


class IsogeoUtils(unittest.TestCase):
class TestIsogeoUtils(unittest.TestCase):
"""Test search to Isogeo API."""
if not app_id or not app_token:
logging.critical("No API credentials set as env variables.")
Expand Down

0 comments on commit e6bcfd2

Please sign in to comment.