Skip to content

Commit 0b0dee5

Browse files
committed
converted double quotes to single quotes because fml
1 parent d8f491b commit 0b0dee5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cordova-lib/spec-plugman/fetch.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)