CB-12018 : removed line 135 , test 011 still functions and runs without it

 This closes #265
diff --git a/spec/cli.spec.js b/spec/cli.spec.js
index 6a6d2a4..81586ea 100644
--- a/spec/cli.spec.js
+++ b/spec/cli.spec.js
@@ -68,7 +68,7 @@
             it("Test#002 : will spit out the version with --version", function (done) {  
               cli(["node", "cordova", "--version"], function () {
                 expect(logger.results.calls.mostRecent().args[0]).toMatch(version);
-                done()
+                done();
               }, 60000);
             });
 
@@ -132,7 +132,6 @@
     describe("create", function () {
         beforeEach(function () {
             spyOn(cordova.raw, "create").and.returnValue(Q());
-            spyOn(cordova_lib, "CordovaError");
         });
 
         it("Test#011 : calls cordova raw create", function (done) {