Browse Source

Merge pull request #442 from arturadib/fix-tellAppToQuit

Fixed browser shutdown bug in Mac tests
Andreas Gal 14 years ago
parent
commit
1db8ccaa21
  1. 2
      test/driver.js

2
test/driver.js

@ -157,7 +157,7 @@ function snapshotCurrentPage(page, task, failure) { @@ -157,7 +157,7 @@ function snapshotCurrentPage(page, task, failure) {
function sendQuitRequest() {
var r = new XMLHttpRequest();
r.open('POST', '/tellMeToQuit?path = ' + escape(appPath), false);
r.open('POST', '/tellMeToQuit?path=' + escape(appPath), false);
r.send('');
}

Loading…
Cancel
Save