You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ia...@apache.org on 2013/12/03 05:11:40 UTC

spec commit: CB-5404: Change filename shared between two file tests

Updated Branches:
  refs/heads/master e1977e837 -> e1ab4d4b9


CB-5404: Change filename shared between two file tests


Project: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/commit/e1ab4d4b
Tree: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/tree/e1ab4d4b
Diff: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/diff/e1ab4d4b

Branch: refs/heads/master
Commit: e1ab4d4b9d3cfbff8e3736b7254bab46ff66fba3
Parents: e1977e8
Author: Ian Clelland <ic...@chromium.org>
Authored: Mon Dec 2 23:10:38 2013 -0500
Committer: Ian Clelland <ic...@chromium.org>
Committed: Mon Dec 2 23:11:11 2013 -0500

----------------------------------------------------------------------
 autotest/tests/file.tests.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/e1ab4d4b/autotest/tests/file.tests.js
----------------------------------------------------------------------
diff --git a/autotest/tests/file.tests.js b/autotest/tests/file.tests.js
index af59fa3..aeba723 100644
--- a/autotest/tests/file.tests.js
+++ b/autotest/tests/file.tests.js
@@ -3231,7 +3231,7 @@ describe('File API', function() {
             });
         });
         it("file.spec.96 should be able to write and append to file, createWriter", function() {
-            var fileName = "writer.append",
+            var fileName = "writer.append.createWriter",
                 theWriter,
                 filePath = joinURL(root.fullPath, fileName),
                 // file content
@@ -3280,7 +3280,7 @@ describe('File API', function() {
             });
         });
         it("file.spec.97 should be able to write and append to file, File object", function() {
-            var fileName = "writer.append",
+            var fileName = "writer.append.File",
                 theWriter,
                 // old API internals: use fullPath in File object
                 filePath = joinURL(root.fullPath, fileName),