From 95f3547cfb035e22c638c18133e075c3e47a3f83 Mon Sep 17 00:00:00 2001 From: Barry Tulchinsky Date: Sat, 21 Dec 2013 16:49:52 -0500 Subject: [PATCH] fix another error in the spec tests for utimes --- tests/spec/fs.utimes.spec.js | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/tests/spec/fs.utimes.spec.js b/tests/spec/fs.utimes.spec.js index 3f5fd79..e4e15d4 100644 --- a/tests/spec/fs.utimes.spec.js +++ b/tests/spec/fs.utimes.spec.js @@ -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; }); });