CB-11050 Removing the flaky XHR Test

 This closes #140
diff --git a/cordova-plugin-mobilespec-tests/tests/localXHR.tests.js b/cordova-plugin-mobilespec-tests/tests/localXHR.tests.js
index f42ed63..e2d16b6 100644
--- a/cordova-plugin-mobilespec-tests/tests/localXHR.tests.js
+++ b/cordova-plugin-mobilespec-tests/tests/localXHR.tests.js
@@ -19,6 +19,7 @@
  *
  */
 
+// These tests are needed to check browser's functionality and verify that we are not breaking it.
 exports.defineAutoTests = function () {
     var isWp8 = cordova.platformId === "windowsphone";
     var isIOS = (cordova.platformId === "ios");
@@ -99,7 +100,7 @@
         });
 
         it("XMLHttpRequest.spec.9 calls onload from successful http get", function (done) {
-            createXHR("http://cordova-filetransfer.jitsu.com", true, done, errorHandler.onError.bind(null, done));
+            createXHR("http://google.com", true, done, errorHandler.onError.bind(null, done));
         });
 
         it("XMLHttpRequest.spec.3 should be able to load the current page", function (done) {