Skip to content

Commit 728e3d1

Browse files
authored
fix typo in test_data_type (#365)
1 parent d9a2ba2 commit 728e3d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymysqlreplication/tests/test_data_type.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ def test_status_vars(self):
701701
self.assertEqual(event.catalog_nz_code, b'std')
702702
self.assertEqual(event.mts_accessed_db_names, [b'pymysqlreplication_test'])
703703

704-
def test_null_bitmask(self)
704+
def test_null_bitmask(self):
705705
"""Test parse of null-bitmask in table map events
706706
707707
Create table with 16 columns with nullability specified by 'bit_mask' variable
@@ -744,7 +744,7 @@ def test_null_bitmask(self)
744744
for i in range(16):
745745
values.append('0')
746746

747-
insert_query += f' ({",".join(values)})')
747+
insert_query += f' ({",".join(values)})'
748748

749749
self.execute(create_query)
750750
self.execute(insert_query)

0 commit comments

Comments
 (0)