From c09ceabb1adb5c7b597a17a3a0a84eedc8d49e20 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com>
Date: Sat, 24 Sep 2016 12:47:36 -0400
Subject: [PATCH] Fixed class names of tests to match naming conventions.
---
tests/test_aprs.py | 2 +-
tests/test_kiss.py | 2 +-
tests/test_kiss_util.py | 2 +-
tests/test_util.py | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/test_aprs.py b/tests/test_aprs.py
index 94c5cd2..e2a6e2f 100644
--- a/tests/test_aprs.py
+++ b/tests/test_aprs.py
@@ -33,7 +33,7 @@ POSITIVE_NUMBERS = NUMBERS[1:]
ALPHANUM = ''.join([ALPHABET, NUMBERS])
-class APRSTest(unittest.TestCase): # pylint: disable=R0904
+class AprsTest(unittest.TestCase): # pylint: disable=R0904
"""Tests for Python APRS-IS Bindings."""
logger = logging.getLogger(__name__)
diff --git a/tests/test_kiss.py b/tests/test_kiss.py
index da519d9..452a7e8 100644
--- a/tests/test_kiss.py
+++ b/tests/test_kiss.py
@@ -25,7 +25,7 @@ __credits__ = []
# pylint: disable=R0904,C0103
-class KISSUtilTestCase(unittest.TestCase):
+class KissUtilTestCase(unittest.TestCase):
"""Test class for KISS Python Module."""
diff --git a/tests/test_kiss_util.py b/tests/test_kiss_util.py
index 17560cc..c887fb2 100644
--- a/tests/test_kiss_util.py
+++ b/tests/test_kiss_util.py
@@ -21,7 +21,7 @@ __credits__ = []
# pylint: disable=R0904,C0103
-class KISSUtilTestCase(unittest.TestCase):
+class KissUtilTestCase(unittest.TestCase):
"""Test class for KISS Python Module."""
diff --git a/tests/test_util.py b/tests/test_util.py
index f7bc089..354e454 100644
--- a/tests/test_util.py
+++ b/tests/test_util.py
@@ -32,7 +32,7 @@ INVALID_CALLSIGNS = ['xW2GMDx', 'W2GMD-16', 'W2GMD-A', 'W', 'W2GMD-1-0',
'W*GMD', 'W2GMD-123']
-class APRSUtilTestCase(unittest.TestCase): # pylint: disable=R0904
+class AprsUtilTestCase(unittest.TestCase): # pylint: disable=R0904
"""Tests for Python APRS Utils."""
logger = logging.getLogger(__name__)
--
GitLab