diff options
| author | Andrey Orst <andreyorst@gmail.com> | 2020-11-09 09:10:15 +0300 |
|---|---|---|
| committer | Andrey Orst <andreyorst@gmail.com> | 2020-11-09 09:10:15 +0300 |
| commit | e9fba1130b30fc223bceafc7126a3fb1da62cec9 (patch) | |
| tree | 349b9da2790ec024ca59415f3b7c1107df65c0f4 /test | |
| parent | f9161b6b54cdaa9d773c0d0cb1b75eaf1e67318b (diff) | |
fix(core): rename vec to vector
Diffstat (limited to 'test')
| -rw-r--r-- | test/core.fnl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/core.fnl b/test/core.fnl index 54b2d00..52b198e 100644 --- a/test/core.fnl +++ b/test/core.fnl @@ -3,7 +3,7 @@ (require-macros :test.test) (local - {: vec + {: vector : hash-map : apply : seq @@ -596,10 +596,10 @@ (deftest vec (testing vec - (assert-eq (vec) []) - (assert-eq (vec 1) [1]) - (assert-eq (vec 1 2 3) [1 2 3]) - (assert-eq (getmetatable (vec 1 2 3)) {:cljlib/table-type :seq}))) + (assert-eq (vector) []) + (assert-eq (vector 1) [1]) + (assert-eq (vector 1 2 3) [1 2 3]) + (assert-eq (getmetatable (vector 1 2 3)) {:cljlib/table-type :seq}))) (deftest hash-map (testing hash-map |