Skip to content

Commit fa07f7b

Browse files
committed
fix case
1 parent 9b27e64 commit fa07f7b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/mapping.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ var options = {
310310
wappalyzerpr: {
311311
name: "wappalyzerpr",
312312
key: "wpr",
313-
api: "wappalyzerpr",
313+
api: "wappalyzerPR",
314314
param: "number",
315315
info: "PR number of the Wappalyzer fork to use in technology detection",
316316
},
@@ -847,7 +847,7 @@ var options = {
847847
wappalyzerpr: {
848848
name: "wappalyzerpr",
849849
key: "wpr",
850-
api: "wappalyzerpr",
850+
api: "wappalyzerPR",
851851
param: "number",
852852
info: "PR number of the Wappalyzer fork to use in technology detection",
853853
},

test/command-line-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ describe('WebPageTest Command Line', function() {
107107
), function(err, data) {
108108
if (err) return done(err);
109109
data = JSON.parse(data);
110-
assert.equal(data.url, wptServer + 'runtest.php?url=http%3A%2F%2Ftwitter.com%2Fmarcelduran&location=Local_Firefox_Chrome%3AChrome&runs=3&fvonly=1&label=test%20123&timeline=1&netlog=1&wappalyzerpr=1&pngss=1&f=json');
110+
assert.equal(data.url, wptServer + 'runtest.php?url=http%3A%2F%2Ftwitter.com%2Fmarcelduran&location=Local_Firefox_Chrome%3AChrome&runs=3&fvonly=1&label=test%20123&timeline=1&netlog=1&wappalyzerPR=1&pngss=1&f=json');
111111
done();
112112
});
113113
});

test/edge-cases-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ describe('Edge Cases of', function() {
9191
wappalyzerpr: 1,
9292
}, function (err, data) {
9393
if (err) return done(err);
94-
assert.equal(data.url, wptServer + 'runtest.php?url=http%3A%2F%2Ffoobar.com&wappalyzerpr=1&f=json');
94+
assert.equal(data.url, wptServer + 'runtest.php?url=http%3A%2F%2Ffoobar.com&wappalyzerPR=1&f=json');
9595
done();
9696
});
9797
});

0 commit comments

Comments
 (0)