removed console.log statements used for debugging from spec tests

This commit is contained in:
Barry Tulchinsky 2013-12-15 15:27:48 -05:00
parent a0456e2909
commit b5b2367959
1 changed files with 0 additions and 3 deletions

View File

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