Skip to content

Commit

Permalink
fix: update versions and fix minor bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
avara1986 committed May 25, 2024
1 parent 1539e05 commit 4642ab6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_crypt.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import logging
import os
import sys
import unittest
from unittest.mock import patch

Expand Down Expand Up @@ -35,6 +36,7 @@ def decrypt(self, encrypted):


class CryptTests(unittest.TestCase):
@pytest.mark.skipif(sys.version_info >= (3, 12), reason="requires python3.10 or higher")
def test_ko(self):
with pytest.raises(TypeError) as excinfo:
MockDecrypt()
Expand Down

0 comments on commit 4642ab6

Please sign in to comment.