From 1d48ca467ef55710d0173cf39de7abe2d6b46ea2 Mon Sep 17 00:00:00 2001 From: Bedram Tamang Date: Thu, 18 Jun 2026 20:03:37 -0700 Subject: [PATCH] style: apply ruff format to postgres insert grammar test Formatting fix for the test added in 71688637; main was failing 'ruff format --check .'. --- .../postgres/grammar/test_postgres_insert_grammar.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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')", )