fix another error in the spec tests for utimes
This commit is contained in:
parent
c29ec0c3b7
commit
13c3cb2b23
|
@ -236,21 +236,19 @@ define(["IDBFS"], function(IDBFS) {
|
|||
});
|
||||
|
||||
it ('should update atime and mtime of directory path', function (error) {
|
||||
var complete = false
|
||||
var complete = false;
|
||||
var _error;
|
||||
|
||||
//Note: required as the filesystem somehow gets removed from the Jasmine object
|
||||
var fs = this.fs;
|
||||
var that = this;
|
||||
|
||||
var _stat;
|
||||
|
||||
var atime = Date.parse('1 Oct 2000 15:33:22');
|
||||
var mtime = Date.parse('30 Sep 2000 06:43:54');
|
||||
|
||||
fs.mkdir('/testdir', function (error) {
|
||||
that.fs.mkdir('/testdir', function (error) {
|
||||
if (error) throw error;
|
||||
|
||||
fs.utimes('/testdir', atime, mtime, function (error) {
|
||||
that.fs.utimes('/testdir', atime, mtime, function (error) {
|
||||
_error = error;
|
||||
|
||||
fs.stat('/testdir', function (error, stat) {
|
||||
|
@ -270,7 +268,6 @@ define(["IDBFS"], function(IDBFS) {
|
|||
expect(_error).toEqual(null);
|
||||
expect(_stat.atime).toEqual(atime);
|
||||
expect(_stat.mtime).toEqual(mtime);
|
||||
delete fs;
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue