From a8f6c30a36466cb2172c6eb26cc363f823c019f1 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Fri, 16 Aug 2013 14:19:56 -0700 Subject: [PATCH] Fix test --- test/spec/core/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/core/history.js b/test/spec/core/history.js index 024611543..115ef2bdd 100644 --- a/test/spec/core/history.js +++ b/test/spec/core/history.js @@ -256,7 +256,7 @@ describe("iD.History", function () { var key = history._getKey('saved_history'); context.storage(key, null); history.save(); - expect(context.storage(key)).to.be.undefined; + expect(context.storage(key)).to.be.null; context.storage(key, 'something'); expect(context.storage(key)).to.equal('something'); history.save();