File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/test/clojure/clojure/core/async Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 77; ; You must not remove this notice, or any other, from this software.
88
99(ns clojure.core.async.flow-test
10- (:require [clojure.test :refer :all ]))
10+ (:require [clojure.test :refer :all ]
11+ [clojure.core.async.impl.dispatch :as dispatch]))
1112
1213(defmacro deftest-against
1314 [ver name & body]
14- (when (clojure.core.async.impl. dispatch/at-least-clojure-version? ver)
15+ (when (dispatch/at-least-clojure-version? ver)
1516 `(deftest ~name ~@body)))
1617
17- (when (clojure.core.async.impl. dispatch/at-least-clojure-version? [1 11 0 ])
18+ (when (dispatch/at-least-clojure-version? [1 11 0 ])
1819 (require '[clojure.core.async.flow :as flow]))
1920
2021(deftest-against [1 11 0 ] test-futurize
You can’t perform that action at this time.
0 commit comments