Skip to content

Commit f524625

Browse files
committed
Fix Black formatting for SMALLDATETIME test case
1 parent 801bbe8 commit f524625

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

tests/test_019_sql_variant.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,12 @@ def variant_test_table(cursor, db_connection):
8484
(15, "CAST('2024-05-20' AS DATE)", "date", "Date (DATE)"),
8585
(16, "CAST('12:34:56' AS TIME)", "time", "Time (TIME)"),
8686
(17, "CAST('2024-05-20 12:34:56.123' AS DATETIME)", "datetime", "DateTime (DATETIME)"),
87-
(18, "CAST('2024-05-20 12:34:00' AS SMALLDATETIME)", "smalldatetime", "SmallDateTime (SMALLDATETIME)"),
87+
(
88+
18,
89+
"CAST('2024-05-20 12:34:00' AS SMALLDATETIME)",
90+
"smalldatetime",
91+
"SmallDateTime (SMALLDATETIME)",
92+
),
8893
(
8994
19,
9095
"CAST('2024-05-20 12:34:56.1234567' AS DATETIME2)",

0 commit comments

Comments
 (0)