diff --git a/pymysqlreplication/tests/test_data_type.py b/pymysqlreplication/tests/test_data_type.py index 2fca96f0..8c0215d8 100644 --- a/pymysqlreplication/tests/test_data_type.py +++ b/pymysqlreplication/tests/test_data_type.py @@ -701,7 +701,7 @@ def test_status_vars(self): self.assertEqual(event.catalog_nz_code, b'std') self.assertEqual(event.mts_accessed_db_names, [b'pymysqlreplication_test']) - def test_null_bitmask(self) + def test_null_bitmask(self): """Test parse of null-bitmask in table map events Create table with 16 columns with nullability specified by 'bit_mask' variable @@ -744,7 +744,7 @@ def test_null_bitmask(self) for i in range(16): values.append('0') - insert_query += f' ({",".join(values)})') + insert_query += f' ({",".join(values)})' self.execute(create_query) self.execute(insert_query)