Skip to content

Commit 99ee55f

Browse files
committed
BUG: Fix unit test literal name
1 parent 6ffee2e commit 99ee55f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dataframe_sql/tests/pandas_sql_functionality_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ def test_timestamps():
989989
pandas_frame = FOREST_FIRES.copy()[["wind"]]
990990
pandas_frame["now()"] = datetime.now()
991991
pandas_frame["today()"] = date.today()
992-
pandas_frame["_literal2"] = datetime(2019, 1, 31, 23, 20, 32)
992+
pandas_frame["_literal5"] = datetime(2019, 1, 31, 23, 20, 32)
993993
tm.assert_frame_equal(pandas_frame, my_frame)
994994

995995

0 commit comments

Comments
 (0)