Skip to content

Commit c66378c

Browse files
Use single quotes
1 parent a4a87c4 commit c66378c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_celtypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def test_bytes_type():
8181
assert repr(b_0) == "BytesType(b'bytes')"
8282
assert BytesType(None) == BytesType(b'')
8383
assert BytesType(MessageType({"value": BytesType(b'42')})) == BytesType(b'42')
84-
assert b_0.contains(b"byte")
84+
assert b_0.contains(b'byte')
8585

8686

8787
def test_double_type():

0 commit comments

Comments
 (0)