Mainly fixing linter (kondo) whines.

This commit is contained in:
Simon Brooke 2021-06-09 15:58:58 +01:00
parent 5c70bd0c91
commit 2461319e57
No known key found for this signature in database
GPG key ID: A7A4F18D1D4DF987
9 changed files with 10 additions and 10 deletions

View file

@ -1,6 +1,6 @@
(ns cc.journeyman.the-great-game.world.location-test
(:require [clojure.test :refer :all]
[cc.journeyman.the-great-game.world.location :refer :all]))
(:require [clojure.test :refer [deftest is testing]]
[cc.journeyman.the-great-game.world.location :refer [distance-between get-coords]]))
(deftest get-coords-test
(testing "Get coordinates of location"

View file

@ -1,5 +1,5 @@
(ns cc.journeyman.the-great-game.world.routes-test
(:require [clojure.test :refer :all]
(:require [clojure.test :refer [deftest is testing]]
[cc.journeyman.the-great-game.world.routes :refer [find-routes]]
[cc.journeyman.the-great-game.world.world :refer [default-world]]))