diff --git a/tests/unit/django_spanner/test_operations.py b/tests/unit/django_spanner/test_operations.py index e2a77148b2..9bed6a447e 100644 --- a/tests/unit/django_spanner/test_operations.py +++ b/tests/unit/django_spanner/test_operations.py @@ -33,9 +33,9 @@ def test_sql_flush(self): self.assertEqual( self.db_operations.sql_flush( - style=no_style(), tables=["Table1, Table2"] + style=no_style(), tables=["Table1", "Table2"] ), - ["DELETE FROM `Table1, Table2`"], + ["DELETE FROM Table1", "DELETE FROM Table2"], ) def test_sql_flush_empty_table_list(self):