From e4238710f3899fa234f9f5330e0286045d6a23d8 Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Wed, 21 Nov 2012 12:03:44 +0400 Subject: [PATCH] Ditto for tests --- test/monger/test/lib_integration_test.clj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/monger/test/lib_integration_test.clj b/test/monger/test/lib_integration_test.clj index 8287207..6777383 100644 --- a/test/monger/test/lib_integration_test.clj +++ b/test/monger/test/lib_integration_test.clj @@ -6,19 +6,19 @@ com.mongodb.DBObject) (:require monger.json monger.joda-time - [clj-time.core :as t] - [cheshire.custom :as json2])) + [clj-time.core :as t] + [cheshire.core :as json])) (deftest ^{:integration true} serialization-of-joda-datetime-to-json (let [dt (t/date-time 2011 10 13 23 55 0)] (is (= "\"2011-10-13T23:55:00.000Z\"" - (json2/encode dt))))) + (json/encode dt))))) (deftest ^{:integration true} serialization-of-joda-date-to-json (let [d (.toDate (t/date-time 2011 10 13 23 55 0))] (is (= "\"2011-10-13T23:55:00Z\"" - (json2/encode d))))) + (json/encode d))))) (deftest ^{:integration true} conversion-of-joda-datetime-to-db-object (let [d (to-db-object (t/date-time 2011 10 13 23 55 0))]