From 6f391547113755ddf368ac18256f5dd2690e816a Mon Sep 17 00:00:00 2001 From: bortexz Date: Fri, 30 Sep 2022 11:10:28 +0200 Subject: [PATCH] fix tests wrong namespaces --- test/bortexz/tacos/timeseries_test.clj | 4 ++-- test/bortexz/tacos_test.clj | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/bortexz/tacos/timeseries_test.clj b/test/bortexz/tacos/timeseries_test.clj index dafe814..ddb7206 100644 --- a/test/bortexz/tacos/timeseries_test.clj +++ b/test/bortexz/tacos/timeseries_test.clj @@ -1,6 +1,6 @@ (ns bortexz.tacos.timeseries-test - (:require [clojure.test :refer [deftest testing is are]] - [bortexz.tecniko.timeseries :as ts] + (:require [clojure.test :refer [deftest testing is]] + [bortexz.tacos.timeseries :as ts] [clojure.data.avl :as avl])) (deftest base-ops diff --git a/test/bortexz/tacos_test.clj b/test/bortexz/tacos_test.clj index b51f80b..e239621 100644 --- a/test/bortexz/tacos_test.clj +++ b/test/bortexz/tacos_test.clj @@ -1,8 +1,8 @@ (ns bortexz.tacos-test (:require [clojure.test :refer [deftest is]] - [bortexz.tecniko :as ta] + [bortexz.tacos :as ta] [clojure.edn :as edn] - [bortexz.tecniko.timeseries :as ts] + [bortexz.tacos.timeseries :as ts] [bortexz.utils.math :as umath] [bortexz.graphcom :as g]))