Skip to content

Commit

Permalink
🎨 Improve test readability
Browse files Browse the repository at this point in the history
  • Loading branch information
pmonks committed Aug 15, 2024
1 parent 9eea50b commit c701951
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/lice_comb/impl/splitting_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -197,5 +197,5 @@
(testing "No splitting of any names in the SPDX license and exception lists"
(let [lic-names (map #(:name (slic/id->info %)) (slic/ids))
exc-names (map #(:name (sexc/id->info %)) (sexc/ids))]
(is (every? true? (map #(= % (s/join (split-on-operators %))) lic-names)))
(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 comments on commit c701951

Please sign in to comment.