Skip to content

Commit b0da604

Browse files
ansanpermattsb42-aws
authored andcommitted
Migrate unit/test_util_str_ops.py from unittest to pytest (#128)
1 parent 29dbced commit b0da604

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/unit/test_util_str_ops.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
# language governing permissions and limitations under the License.
1414
"""Test suite for aws_encryption_sdk.internal.str_ops"""
1515
import codecs
16-
import unittest
1716

1817
import pytest
1918

@@ -22,7 +21,7 @@
2221
pytestmark = [pytest.mark.unit, pytest.mark.local]
2322

2423

25-
class TestStrOps(unittest.TestCase):
24+
class TestStrOps(object):
2625
def test_to_str_str2str(self):
2726
test = aws_encryption_sdk.internal.str_ops.to_str("asdf")
2827
assert test == "asdf"

0 commit comments

Comments
 (0)