@@ -221,19 +221,19 @@ describe('fetch', function() {
221221
222222 // this commit uses the new id
223223 it ( 'should fetch from a commit-sha' , function ( done ) {
224- wrapper ( fetch ( " http://github.com/apache/cordova-plugin-device.git#ad5f1e7bfd05ef98c01df549a0fa98036a5625db" , temp , { expected_id : " cordova-plugin-device" } ) , done , function ( ) {
224+ wrapper ( fetch ( ' http://github.com/apache/cordova-plugin-device.git#ad5f1e7bfd05ef98c01df549a0fa98036a5625db' , temp , { expected_id : ' cordova-plugin-device' } ) , done , function ( ) {
225225 expect ( 1 ) . toBe ( 1 ) ;
226226 } ) ;
227227 } ) ;
228228 // this branch uses the old id
229229 it ( 'should fetch from a branch' , function ( done ) {
230- wrapper ( fetch ( " http://github.com/apache/cordova-plugin-device.git#cdvtest" , temp , { expected_id : " org.apache.cordova.device" } ) , done , function ( ) {
230+ wrapper ( fetch ( ' http://github.com/apache/cordova-plugin-device.git#cdvtest' , temp , { expected_id : ' org.apache.cordova.device' } ) , done , function ( ) {
231231 expect ( 1 ) . toBe ( 1 ) ;
232232 } ) ;
233233 } ) ;
234234 // this tag uses the new id
235235 it ( 'should fetch from a tag' , function ( done ) {
236- wrapper ( fetch ( " http://github.com/apache/cordova-plugin-device.git#r1.0.0" , temp , { expected_id : " cordova-plugin-device" } ) , done , function ( ) {
236+ wrapper ( fetch ( ' http://github.com/apache/cordova-plugin-device.git#r1.0.0' , temp , { expected_id : ' cordova-plugin-device' } ) , done , function ( ) {
237237 expect ( 1 ) . toBe ( 1 ) ;
238238 } ) ;
239239 } ) ;
0 commit comments