Skip to content

Commit fbafc1d

Browse files
Removed dead code.
1 parent 198f440 commit fbafc1d

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/test_6300_cursor_other_async.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -821,12 +821,6 @@ async def test_6346(self):
821821
fetched_data = [(n, await c.read()) async for n, c in self.cursor]
822822
self.assertEqual(fetched_data, data)
823823

824-
async def XXXtest_6360_fetch_json_columns(self):
825-
"6360 - fetch JSON columns as Python objects"
826-
expected_data = (1, [1, 2, 3], [4, 5, 6], [7, 8, 9])
827-
self.cursor.execute("select * from TestJsonCols")
828-
self.assertEqual(self.cursor.fetchone(), expected_data)
829-
830824
@unittest.skipIf(
831825
test_env.get_server_version() < (23, 1), "unsupported database"
832826
)

0 commit comments

Comments
 (0)