We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28ee6ee commit e64c153Copy full SHA for e64c153
test/rethinkdb/core_test.clj
@@ -96,7 +96,7 @@
96
(testing "selecting data"
97
(is (= (set (r/run (r/table test-table) conn)) (set pokemons)))
98
(is (= (r/run (-> (r/table test-table) (r/get 25)) conn) (first pokemons)))
99
- (is (= (into [] (r/run (-> (r/table test-table) (r/get-all [25 81])) conn)) pokemons))
+ (is (= (set (r/run (-> (r/table test-table) (r/get-all [25 81])) conn)) (set pokemons)))
100
(is (= pokemons (sort-by :national_no (r/run (-> (r/table test-table)
101
(r/between r/minval r/maxval {:right-bound :closed})) conn))))
102
(is (= (r/run (-> (r/table test-table)
0 commit comments