Skip to content

Commit d31871a

Browse files
committed
Don't check for :ignore-dropped-errors meta on test function
This was a mistake, this metadata flag is supposed to go on the test *var* only.
1 parent 619460f commit d31871a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/manifold/test_utils.clj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
"Dropped errors detected! See log output for details.")))
2727

2828
(defn instrument-test-fn-with-dropped-error-detection [tf]
29-
(if (or (::detect-dropped-errors? tf)
30-
(:ignore-dropped-errors tf))
29+
(if (::detect-dropped-errors? tf)
3130
tf
3231
(with-meta
3332
(fn []

0 commit comments

Comments
 (0)