From 68f38bc00d592afc1d6c443895bf4f5e47620bc4 Mon Sep 17 00:00:00 2001 From: Gabriel mermelstein Date: Thu, 30 Jan 2025 14:15:38 +0200 Subject: [PATCH] renaming test and fix --- tests/store/test_hashes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/store/test_hashes.py b/tests/store/test_hashes.py index 0ac37f85..8e42bba2 100644 --- a/tests/store/test_hashes.py +++ b/tests/store/test_hashes.py @@ -107,8 +107,8 @@ class TestHashes(StepsStore): assert "waku message hash parsing error" in str(ex), "Unexpected error for combined empty and valid hash" # Test for hashes that include non-hex characters. - def test_store_with_non_base64_characters_in_hash(self): - non_hex_hash = "###INVALID HEX###" # Invalid hash with non-hex characters + def test_store_with_non_hex_characters_in_hash(self): + non_hex_hash = "### INVALID HASH ###" # Invalid hash with non-hex characters for i in range(4): self.publish_message(message=self.create_message(payload=to_base64(f"Message_{i}")))