diff --git a/test/mysql_flavor.py b/test/mysql_flavor.py index 962b05b8d9..dac6efbd33 100644 --- a/test/mysql_flavor.py +++ b/test/mysql_flavor.py @@ -15,13 +15,13 @@ class MysqlFlavor(object): "CHANGE MASTER TO MASTER_HOST = ''", ] - def reset_replication_commands(self): - return [ - "RESET MASTER", - "STOP SLAVE", - "RESET SLAVE", - 'CHANGE MASTER TO MASTER_HOST = ""', - ] + def reset_replication_commands(self): + return [ + "RESET MASTER", + "STOP SLAVE", + "RESET SLAVE", + 'CHANGE MASTER TO MASTER_HOST = ""', + ] class GoogleMysql(MysqlFlavor):