We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d85d87f + 18b390c commit 6a63861Copy full SHA for 6a63861
tests/test_mqtt_client.py
@@ -159,7 +159,7 @@ def test_feed_key_too_long(self):
159
long_key = 'a' * 129
160
with self.assertRaises(ValueError) as context:
161
validate_feed_key(long_key)
162
- self.assertIn('less than 128 characters', str(context.exception))
+ self.assertIn('128 characters or less', str(context.exception))
163
164
def test_feed_key_invalid_characters(self):
165
"""Test that feed keys with invalid characters raise TypeError."""
0 commit comments