We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9eea50b commit c701951Copy full SHA for c701951
test/lice_comb/impl/splitting_test.clj
@@ -197,5 +197,5 @@
197
(testing "No splitting of any names in the SPDX license and exception lists"
198
(let [lic-names (map #(:name (slic/id->info %)) (slic/ids))
199
exc-names (map #(:name (sexc/id->info %)) (sexc/ids))]
200
- (is (every? true? (map #(= % (s/join (split-on-operators %))) lic-names)))
201
- (is (every? true? (map #(= % (s/join (split-on-operators %))) exc-names))))))
+ (run! #(is (= [%] (split-on-operators %))) lic-names)
+ (run! #(is (= [%] (split-on-operators %))) exc-names))))
0 commit comments