We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd4fccb commit 919ae8cCopy full SHA for 919ae8c
1 file changed
meshtastic/tests/test_util.py
@@ -589,7 +589,7 @@ def test_acknowledgement_reset():
589
lambda x: x not in [''] and x[0] not in "_" and x[-1] not in '_' and not re.search(r'__', x)
590
))
591
def test_roundtrip_snake_to_camel_camel_to_snake(a_string):
592
+ """Test that snake_to_camel and camel_to_snake roundtrip each other"""
593
value0 = snake_to_camel(a_string=a_string)
594
value1 = camel_to_snake(a_string=value0)
595
assert a_string == value1, (a_string, value1)
-
0 commit comments