From 67c295838482663491a76bc497e95545e853ca13 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Sat, 8 Nov 2025 20:39:41 -0600 Subject: [PATCH] Cleanup --- tests/test_raises.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_raises.py b/tests/test_raises.py index 0ff93ad..0afb627 100644 --- a/tests/test_raises.py +++ b/tests/test_raises.py @@ -21,7 +21,7 @@ class TestEncryptorFinalization: # Encrypt some data and finalize encryptor.update(b"Hello, world!") - tag = encryptor.final() + encryptor.final() # Attempting to update after final should raise RuntimeError with pytest.raises( @@ -38,7 +38,7 @@ class TestEncryptorFinalization: # Encrypt some data and finalize encryptor.update(b"Hello, world!") - tag = encryptor.final() + encryptor.final() # Attempting to call final again should raise RuntimeError with pytest.raises( @@ -55,7 +55,7 @@ class TestEncryptorFinalization: # Encrypt and finalize encryptor.update(b"Test data") - tag = encryptor.final() + encryptor.final() # Both operations should fail with pytest.raises(