From 473a6f4ec38a101b4ab756bf09b600609f6662ff Mon Sep 17 00:00:00 2001 From: Diogo Resende Date: Fri, 15 Mar 2013 11:12:14 +0000 Subject: [PATCH] Fixes test-get-cache test for new behaviour (#78) --- test/integration/test-get-cache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/test-get-cache.js b/test/integration/test-get-cache.js index be18aad4..bbb0e169 100644 --- a/test/integration/test-get-cache.js +++ b/test/integration/test-get-cache.js @@ -23,7 +23,7 @@ common.createConnection(function (err, db) { assert.equal(err, null); assert.equal(typeof Instance2, "object"); assert.equal(Instance2.id, 1); - assert.equal(Instance2.name, 'test1'); + assert.equal(Instance2.name, 'test'); // not saved db.close(); }); });