Skip to content
Snippets Groups Projects
Unverified Commit 1875fede authored by Cal Herries's avatar Cal Herries Committed by GitHub
Browse files

Fix incorrect parens (#27033)

parent 407d83cb
No related merge requests found
......@@ -466,8 +466,8 @@
first)
results-timezone (mt/with-everything-store (qp.timezone/results-timezone-id))
now (t/local-date-time (t/zone-id results-timezone))]
(is (true? (close-minute? minute (.getMinute now)))
(is (true? (close-hour? hour (.getHour now)))))))))))
(is (true? (close-minute? minute (.getMinute now))))
(is (true? (close-hour? hour (.getHour now))))))))))
(deftest datetime-math-with-extract-test
(mt/test-drivers (mt/normal-drivers-with-feature :date-arithmetics)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment