We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b2e616 commit a6304deCopy full SHA for a6304de
test/unit/test_defaults.py
@@ -11,16 +11,14 @@
11
# ANY KIND, either express or implied. See the License for the specific
12
# language governing permissions and limitations under the License.
13
"""Test suite to verify calculated values in aws_encryption_sdk.internal.defaults"""
14
-import unittest
15
-
16
import pytest
17
18
import aws_encryption_sdk.internal.defaults
19
20
pytestmark = [pytest.mark.unit, pytest.mark.local]
21
22
23
-class TestDefaults(unittest.TestCase):
+class TestDefaults(object):
24
def test_max_frame_count(self):
25
max_frame_count = pow(2, 32) - 1
26
assert aws_encryption_sdk.internal.defaults.MAX_FRAME_COUNT == max_frame_count
0 commit comments