Skip to content

Commit a6304de

Browse files
ansanpermattsb42-aws
authored andcommitted
Migrate unit/test_defaults.py from unittest to pytest (#116)
1 parent 2b2e616 commit a6304de

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/unit/test_defaults.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,14 @@
1111
# ANY KIND, either express or implied. See the License for the specific
1212
# language governing permissions and limitations under the License.
1313
"""Test suite to verify calculated values in aws_encryption_sdk.internal.defaults"""
14-
import unittest
15-
1614
import pytest
1715

1816
import aws_encryption_sdk.internal.defaults
1917

2018
pytestmark = [pytest.mark.unit, pytest.mark.local]
2119

2220

23-
class TestDefaults(unittest.TestCase):
21+
class TestDefaults(object):
2422
def test_max_frame_count(self):
2523
max_frame_count = pow(2, 32) - 1
2624
assert aws_encryption_sdk.internal.defaults.MAX_FRAME_COUNT == max_frame_count

0 commit comments

Comments
 (0)