Commit 41d61fdb 41d61fdbfd9c4b42e07c4113f708236d41fa8f40 by Nicolas Perriault

refs #389 - uploaded file path in formfill tests

1 parent 20ff4617
...@@ -9,7 +9,7 @@ casper.test.begin('fill() tests', 15, function(test) { ...@@ -9,7 +9,7 @@ casper.test.begin('fill() tests', 15, function(test) {
9 check: true, 9 check: true,
10 choice: 'no', 10 choice: 'no',
11 topic: 'bar', 11 topic: 'bar',
12 file: phantom.libraryPath + '/README.md', 12 file: phantom.casperPath + '/README.md',
13 'checklist[]': ['1', '3'] 13 'checklist[]': ['1', '3']
14 }); 14 });
15 test.assertEvalEquals(function() { 15 test.assertEvalEquals(function() {
...@@ -109,7 +109,7 @@ casper.test.begin('getFormValues() tests', 2, function(test) { ...@@ -109,7 +109,7 @@ casper.test.begin('getFormValues() tests', 2, function(test) {
109 check: true, 109 check: true,
110 choice: 'no', 110 choice: 'no',
111 topic: 'bar', 111 topic: 'bar',
112 file: phantom.libraryPath + '/README.md', 112 file: phantom.casperPath + '/README.md',
113 'checklist[]': ['1', '3'] 113 'checklist[]': ['1', '3']
114 }); 114 });
115 }); 115 });
...@@ -134,7 +134,7 @@ casper.test.begin('getFormValues() tests', 2, function(test) { ...@@ -134,7 +134,7 @@ casper.test.begin('getFormValues() tests', 2, function(test) {
134 check: true, 134 check: true,
135 choice: 'yes', 135 choice: 'yes',
136 topic: 'bar', 136 topic: 'bar',
137 file: phantom.libraryPath + '/README.md', 137 file: phantom.casperPath + '/README.md',
138 'checklist[]': ['1', '3'] 138 'checklist[]': ['1', '3']
139 }); 139 });
140 }); 140 });
......