CB-8742 fixed XMLHttpRequest.spec.6 to use local variable

github close #125
diff --git a/cordova-plugin-mobilespec-tests/tests/localXHR.tests.js b/cordova-plugin-mobilespec-tests/tests/localXHR.tests.js
index 835a3d7..1353692 100644
--- a/cordova-plugin-mobilespec-tests/tests/localXHR.tests.js
+++ b/cordova-plugin-mobilespec-tests/tests/localXHR.tests.js
@@ -114,8 +114,8 @@
         });
 
         it("XMLHttpRequest.spec.6 adds hash-path and loads file okay", function (done) {
-            window.location = window.location.href + "#asd/asd/asdasd";
-            createXHR(window.location.href, true, done, errorHandler.onError.bind(null, done));
+            var fileName = window.location.href + "#asd/asd/asdasd";
+            createXHR(fileName, true, done, errorHandler.onError.bind(null, done));
         });
 
         describe("XMLHttpRequest", function () {