From 46ad8d18777111242f999beec7dbc70926abe20c Mon Sep 17 00:00:00 2001 From: "Michael S. Klishin" Date: Sat, 21 Jul 2012 18:22:33 +0400 Subject: [PATCH] Cosmetics --- test/monger/test/aggregation_framework_test.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/monger/test/aggregation_framework_test.clj b/test/monger/test/aggregation_framework_test.clj index a5734f9..d8b050d 100644 --- a/test/monger/test/aggregation_framework_test.clj +++ b/test/monger/test/aggregation_framework_test.clj @@ -59,7 +59,7 @@ { :state "IL" :quantity 2 :price 11.50 } { :state "CA" :quantity 2 :price 2.95 } { :state "IL" :quantity 3 :price 5.50 }] - expected #{{:_id "CA", :total 204.9} {:_id "IL", :total 39.5} {:_id "NY", :total 697.0}}] + expected #{{:_id "CA" :total 204.9} {:_id "IL" :total 39.5} {:_id "NY" :total 697.0}}] (mc/insert-batch collection batch) (let [result (set (mc/aggregate "docs" [{$project {:subtotal {$multiply ["$quantity", "$price"]} :_id 1