From bcebde0b6241691022f94684696b7dae59bb36dd Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Fri, 14 Jan 2022 17:59:09 +0200 Subject: [PATCH] fix typo in test_data_type --- pymysqlreplication/tests/test_data_type.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)