Skip to content

Commit 7daa8ec

Browse files
committed
Fix failing IT
Signed-off-by: currantw <taylor.curran@improving.com>
1 parent f5cd625 commit 7daa8ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integ-test/src/integration/scala/org/opensearch/flint/spark/ppl/FlintSparkPPLBuiltInDateTimeFunctionITSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ class FlintSparkPPLBuiltInDateTimeFunctionITSuite
398398
| | eval last_wednesday = relative_timestamp("-1d@w3")
399399
| | eval actual_days_ago = timestampdiff(DAY, last_wednesday, now())
400400
| | eval day_of_week = day_of_week(now())
401-
| | eval expected_days_ago = case(day_of_week >= 4, day_of_week - 4 else day_of_week + 3)
401+
| | eval expected_days_ago = case(day_of_week > 4, day_of_week - 4 else day_of_week + 3)
402402
| | eval test_result = (expected_days_ago = actual_days_ago)
403403
| | fields test_result
404404
| | head 1

0 commit comments

Comments
 (0)