From 08c1ccfd25be1a6a5d0aa9083792784046ad0029 Mon Sep 17 00:00:00 2001 From: Barry Tulchinsky Date: Tue, 17 Dec 2013 11:36:47 -0500 Subject: [PATCH] removed unnecessary variables in test --- tests/spec/fs.utimes.spec.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/spec/fs.utimes.spec.js b/tests/spec/fs.utimes.spec.js index 80be8a9..ed3cd9b 100644 --- a/tests/spec/fs.utimes.spec.js +++ b/tests/spec/fs.utimes.spec.js @@ -294,8 +294,6 @@ define(["IDBFS"], function(IDBFS) { that.fs.stat('/myfile', function (error, stat) { if (error) throw error; - atime = stat.atime; - mtime = stat.mtime; atimeEst = now - stat.atime; mtimeEst = now - stat.mtime; complete = true;