Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing unit tests
  • Loading branch information
ninanator committed Mar 6, 2016
commit c2c1cd852b5d912df8beb3b82fbc1a47b2fdac04
2 changes: 1 addition & 1 deletion test/yesql/acceptance_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
(expect (list {:1 1M}) (insert-person<! {:name "Alice" :age 20}))
(expect (list {:1 2M}) (insert-person<! {:name "Bob" :age 25}))
(expect (list {:1 3M}) (insert-person<! {:name "Charlie" :age 35}))
(expect (list {:1 4M}) (insert-person<! [{:name "Pepper" :age 50} {:name "Tony" :age 55}]))
(expect (list {:1 4M} {:1 5M}) (insert-person<! [{:name "Pepper" :age 50} {:name "Tony" :age 55}]))

(expect 5 (count (find-older-than {:age 10})))
(expect 3 (count (find-older-than {:age 30})))
Expand Down