Skip to content

Commit

Permalink
Some typo snuck into this PR, fixing
Browse files Browse the repository at this point in the history
Signed-off-by: Navin Kumar <[email protected]>
  • Loading branch information
NVnavkumar committed Jan 3, 2024
1 parent 743aef2 commit dddc479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/src/main/python/date_time_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def test_unix_timestamp(data_gen, ansi_enabled):
(StringGen('[0-9]{4}/[01][12]/[0-2][1-8]'),'yyyy/MM/dd'),
(StringGen('[01][12]/[0-2][1-8]'), 'MM/dd'),
(StringGen('[0-2][1-8]/[01][12]'), 'dd/MM'),
(ConvertGen(DateGen(nullable=False), lambda d: d.strfte('%Y/%m').zfill(7), data_type=StringType()), 'yyyy/MM')]
(ConvertGen(DateGen(nullable=False), lambda d: d.strftime('%Y/%m').zfill(7), data_type=StringType()), 'yyyy/MM')]

# get invalid date string df
def invalid_date_string_df(spark):
Expand Down

0 comments on commit dddc479

Please sign in to comment.