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; });