Skip to content

Commit 2c118ce

Browse files
committed
Update
1 parent 04c4e28 commit 2c118ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def rows(uuid):
4949
["hello", "world"],
5050
["hello", "world"],
5151
["hello", None],
52-
[("/tables/detect'", 3, "hello")],
52+
[("hello\'", 3, "hello")],
5353
"'\b\f\r\n\t\\",
5454
uuid,
5555
[uuid, uuid, uuid],
@@ -681,13 +681,13 @@ async def test_array_string(self):
681681
assert record["array_string"] == result
682682

683683
async def test_array_tuple(self):
684-
result = [("/tables/detect'", 3, "hello")]
684+
result = [("hello'", 3, "hello")]
685685
assert await self.select_field("array_tuple") == result
686686
record = await self.select_record("array_tuple")
687687
assert record[0] == result
688688
assert record["array_tuple"] == result
689689

690-
result = b"[('/tables/detect\\'',3,'hello')]"
690+
result = b"[('hello\\'',3,'hello')]"
691691
assert await self.select_field_bytes("array_tuple") == result
692692
record = await self.select_record_bytes("array_tuple")
693693
assert record[0] == result

0 commit comments

Comments
 (0)