From c547552d6644dbf5c33862ef86c1a5ba6c8c82e0 Mon Sep 17 00:00:00 2001 From: Sharwan Tiwari Date: Wed, 17 Apr 2024 12:00:06 +0400 Subject: [PATCH] fixed an algebraic test assertion --- tests/unit/cipher_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/cipher_test.py b/tests/unit/cipher_test.py index 8f8729f7..b76097fa 100644 --- a/tests/unit/cipher_test.py +++ b/tests/unit/cipher_test.py @@ -234,7 +234,7 @@ def test_is_spn(): def test_polynomial_system(): tea = TeaBlockCipher(block_bit_size=32, key_bit_size=64, number_of_rounds=1) - assert str(tea.polynomial_system()) == 'Polynomial Sequence with 352 Polynomials in 448 Variables' + assert str(tea.polynomial_system()) == 'Polynomial Sequence with 288 Polynomials in 384 Variables' def test_polynomial_system_at_round():