From 61cb03529b72d07d013e536a0013141735c99fa6 Mon Sep 17 00:00:00 2001 From: Andres Sanchez Date: Thu, 13 Dec 2018 14:11:18 -0600 Subject: [PATCH] Migrate unit/test_util_str_ops.py from unittest to pytest --- test/unit/test_util_str_ops.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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"