diff --git a/test/monger/test/convertion.clj b/test/monger/test/convertion.clj index f2cbb05..cc3035b 100644 --- a/test/monger/test/convertion.clj +++ b/test/monger/test/convertion.clj @@ -105,7 +105,10 @@ (let [did "b38b357f5014a3250d813a16376ca2ff4837e8e1" nested (doto (BasicDBObject.) (.put "int" 101) - (.put "dblist" (doto (BasicDBList.) (.put "0" 0) (.put "1" 1))) (.put "list" (ArrayList. ["red" "green" "blue"]))) + (.put "dblist" (doto (BasicDBList.) + (.put "0" 0) + (.put "1" 1))) + (.put "list" (ArrayList. ["red" "green" "blue"]))) input (doto (BasicDBObject.) (.put "_id" did) (.put "nested" nested))