diff --git a/test/unit/test_util_str_ops.py b/test/unit/test_util_str_ops.py index 9204e73fe..1778bc4a0 100644 --- a/test/unit/test_util_str_ops.py +++ b/test/unit/test_util_str_ops.py @@ -13,7 +13,6 @@ # language governing permissions and limitations under the License. """Test suite for aws_encryption_sdk.internal.str_ops""" import codecs -import unittest import pytest @@ -22,7 +21,7 @@ pytestmark = [pytest.mark.unit, pytest.mark.local] -class TestStrOps(unittest.TestCase): +class TestStrOps(object): def test_to_str_str2str(self): test = aws_encryption_sdk.internal.str_ops.to_str("asdf") assert test == "asdf"