Skip to content

Commit 667452b

Browse files
author
Jen Williams
committed
Fix failing/erroring tests
1 parent 5b7d439 commit 667452b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: deps.edn

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{:deps {org.clojure/clojure {:mvn/version "1.8.0"}
1+
{:deps {org.clojure/clojure {:mvn/version "1.10.0"}
22
org.clojure/tools.cli {:mvn/version "0.3.7"}
33
org.clojure/tools.logging {:mvn/version "0.4.1"}
44
grafter {:mvn/version "2.1.7"}

Diff for: test/rdf_validator/endpoint_test.clj

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
file-uri (str "file://" (.getAbsolutePath rel-file))
1717
repo (parse-repository file-uri)]
1818
(is (= 2 (count (with-open [conn (repo/->connection repo)]
19-
(rdf/statements conn)))))))
19+
(into [] (rdf/statements conn))))))))
2020

2121
(deftest parse-repository-directory-test
2222
(let [dir-str "test/data/test-dir"
2323
repo (parse-repository dir-str)]
2424
(is (= 2 (count (with-open [conn (repo/->connection repo)]
25-
(rdf/statements conn)))))))
25+
(into [] (rdf/statements conn))))))))
2626

2727
(deftest parse-repository-file-name-test
2828
(let [file-str "test/data/example.ttl"
2929
repo (parse-repository file-str)]
3030
(is (= 2 (count (with-open [conn (repo/->connection repo)]
31-
(rdf/statements conn)))))))
31+
(into [] (rdf/statements conn))))))))

0 commit comments

Comments
 (0)