fix another error in the spec tests for utimes

This commit is contained in:
Barry Tulchinsky 2013-12-21 16:49:52 -05:00
parent 6c0758c6aa
commit 95f3547cfb
1 changed files with 4 additions and 7 deletions

View File

@ -236,21 +236,19 @@ define(["Filer"], function(Filer) {
});
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(["Filer"], function(Filer) {
expect(_error).toEqual(null);
expect(_stat.atime).toEqual(atime);
expect(_stat.mtime).toEqual(mtime);
delete fs;
});
});