File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -388,8 +388,7 @@ def test_decimal_separator_with_db_operations(db_connection):
388388 try :
389389 # Create a test table with decimal values
390390 cursor = db_connection .cursor ()
391- cursor .execute (
392- """
391+ cursor .execute ("""
393392 DROP TABLE IF EXISTS #decimal_separator_test;
394393 CREATE TABLE #decimal_separator_test (
395394 id INT,
@@ -400,8 +399,7 @@ def test_decimal_separator_with_db_operations(db_connection):
400399 (2, 678.90),
401400 (3, 0.01),
402401 (4, 999.99);
403- """
404- )
402+ """ )
405403 cursor .close ()
406404
407405 # Test 1: Fetch with default separator
@@ -469,8 +467,7 @@ def test_decimal_separator_batch_operations(db_connection):
469467 try :
470468 # Create test data
471469 cursor = db_connection .cursor ()
472- cursor .execute (
473- """
470+ cursor .execute ("""
474471 DROP TABLE IF EXISTS #decimal_batch_test;
475472 CREATE TABLE #decimal_batch_test (
476473 id INT,
@@ -481,8 +478,7 @@ def test_decimal_separator_batch_operations(db_connection):
481478 (1, 123.456, 12345.67890),
482479 (2, 0.001, 0.00001),
483480 (3, 999.999, 9999.99999);
484- """
485- )
481+ """ )
486482 cursor .close ()
487483
488484 # Test 1: Fetch results with default separator
You can’t perform that action at this time.
0 commit comments