Skip to content

Commit fbf583f

Browse files
committed
Fix data argument style in executemany() test
1 parent bd4a10e commit fbf583f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_execute.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ async def test_execute_many_1(self):
104104
try:
105105
result = await self.con.executemany('''
106106
INSERT INTO exmany VALUES($1, $2)
107-
''', (['a', 1], ['b', 2], ['c', 3], ['d', 4]))
107+
''', [
108+
('a', 1), ('b', 2), ('c', 3), ('d', 4)
109+
])
108110

109111
self.assertIsNone(result)
110112

0 commit comments

Comments
 (0)