You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2012/08/09 05:08:52 UTC

spec commit: syntax error - replace ; with ,

Updated Branches:
  refs/heads/master acbd72fd3 -> 2ae688747


syntax error - replace ; with ,


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

Branch: refs/heads/master
Commit: 2ae6887478e99fe453924d33a66ec74af2296aed
Parents: acbd72f
Author: Don Coleman <dc...@chariotsolutions.com>
Authored: Wed Aug 8 16:33:42 2012 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Wed Aug 8 23:07:40 2012 -0400

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


http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/2ae68874/autotest/tests/file.tests.js
----------------------------------------------------------------------
diff --git a/autotest/tests/file.tests.js b/autotest/tests/file.tests.js
index d1e7db4..06d8ec8 100644
--- a/autotest/tests/file.tests.js
+++ b/autotest/tests/file.tests.js
@@ -2906,7 +2906,7 @@ describe('File API', function() {
                     expect(evt.target.result).toBe(rule);
                 }),
                 fail = createFail('FileReader'),
-                filePath = root.fullPath + '/' + fileName;
+                filePath = root.fullPath + '/' + fileName,
                 // creates a FileWriter object
                 create_writer = function(fileEntry) {
                     fileEntry.createWriter(write_file, fail);
@@ -2941,7 +2941,7 @@ describe('File API', function() {
         it("should read empty file properly", function() {
             // path of file
             var fileName = "empty.txt",
-                filePath = root.fullPath + '/' + fileName;
+                filePath = root.fullPath + '/' + fileName,
                 // file content
                 rule = "",
                 fail = createFail('FileReader'),