File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -238,8 +238,12 @@ def test_translate_default_from_mysql_to_sqlite_curdate(self) -> None:
238
238
239
239
def test_translate_default_from_mysql_to_sqlite_current_timestamp_with_parentheses (self ) -> None :
240
240
"""Test _translate_default_from_mysql_to_sqlite with current_timestamp()."""
241
- assert MySQLtoSQLite ._translate_default_from_mysql_to_sqlite ("current_timestamp()" ) == "DEFAULT CURRENT_TIMESTAMP"
242
- assert MySQLtoSQLite ._translate_default_from_mysql_to_sqlite ("CURRENT_TIMESTAMP()" ) == "DEFAULT CURRENT_TIMESTAMP"
241
+ assert (
242
+ MySQLtoSQLite ._translate_default_from_mysql_to_sqlite ("current_timestamp()" ) == "DEFAULT CURRENT_TIMESTAMP"
243
+ )
244
+ assert (
245
+ MySQLtoSQLite ._translate_default_from_mysql_to_sqlite ("CURRENT_TIMESTAMP()" ) == "DEFAULT CURRENT_TIMESTAMP"
246
+ )
243
247
244
248
def test_translate_default_from_mysql_to_sqlite_now (self ) -> None :
245
249
"""Test _translate_default_from_mysql_to_sqlite with now()."""
You can’t perform that action at this time.
0 commit comments