clojurescript-unraveled icon indicating copy to clipboard operation
clojurescript-unraveled copied to clipboard

4.6.1 -> Incorrect namespace reference

Open pwhittin opened this issue 5 years ago • 0 comments

The following code:

(ns leapyears.test.main
  (:require [cljs.test :as t]
            [leapyears.vendor.util-closure :as util]))

should be:

(ns leapyears.test.main
  (:require [cljs.test :as t]
            [leapyears.util :as util]))

pwhittin avatar Oct 16 '20 14:10 pwhittin