From b5b2367959d89fc3f95537e2475aee2f495817a9 Mon Sep 17 00:00:00 2001 From: Barry Tulchinsky Date: Sun, 15 Dec 2013 15:27:48 -0500 Subject: [PATCH] removed console.log statements used for debugging from spec tests --- tests/spec/fs.utimes.spec.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/spec/fs.utimes.spec.js b/tests/spec/fs.utimes.spec.js index 1156a8c..038f26f 100644 --- a/tests/spec/fs.utimes.spec.js +++ b/tests/spec/fs.utimes.spec.js @@ -123,15 +123,12 @@ define(["IDBFS"], function(IDBFS) { that.fs.writeFile('/testfile', '', function (error) { if (error) throw error; - console.log('created file'); that.fs.utimes('/testfile', atime, mtime, function (error) { _error = error; - console.log('getting stats'); that.fs.stat('/testfile', function (error, rstat) { if (error) throw error; - console.log('got stats'); stat = rstat; complete = true; });