Skip to content

Commit

Permalink
Fix default context comparison in another test
Browse files Browse the repository at this point in the history
  • Loading branch information
cap10morgan committed Apr 21, 2023
1 parent 54e972f commit 7c502a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fluree/sdk/clojure_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
loaded (test-utils/retry-load conn ledger-alias 100)
loaded-db (fluree/db loaded)]
(is (= (:t db) (:t loaded-db)))
(is (= (:context ledger) (:context loaded))))))
(is (= (dbproto/-default-context db) (dbproto/-default-context loaded-db))))))

(testing "can load a file ledger with its own context"
(with-tmp-dir storage-path #_{::twf/delete-dir false}
Expand Down

0 comments on commit 7c502a1

Please sign in to comment.