diff --git a/fastapi_startkit/tests/masoniteorm/postgres/grammar/test_postgres_insert_grammar.py b/fastapi_startkit/tests/masoniteorm/postgres/grammar/test_postgres_insert_grammar.py index 382daf0d..da3eb178 100644 --- a/fastapi_startkit/tests/masoniteorm/postgres/grammar/test_postgres_insert_grammar.py +++ b/fastapi_startkit/tests/masoniteorm/postgres/grammar/test_postgres_insert_grammar.py @@ -27,8 +27,7 @@ def test_compile_bulk_create_builds_multi_row_insert(self): self.assertEqual( sql, - 'INSERT INTO "users" ("name", "email") VALUES ' - "('Joe', 'joe@example.com'), ('Bob', 'bob@example.com')", + "INSERT INTO \"users\" (\"name\", \"email\") VALUES ('Joe', 'joe@example.com'), ('Bob', 'bob@example.com')", )