Skip to content

Commit e12134b

Browse files
committed
Fix linter after merge
1 parent e80484b commit e12134b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

appengine/analytics/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const trackEvent = (category, action, label, value) => {
4646
ev: value,
4747
};
4848

49-
return axios.get('http://www.google-analytics.com/debug/collect', {
49+
return fetch('http://www.google-analytics.com/debug/collect', {
5050
params: data,
5151
});
5252
};

functions/security/test/index.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const getSample = () => {
3232

3333
return {
3434
sample: proxyquire('../', {
35-
"node-fetch": fetchMock,
35+
'node-fetch': fetchMock,
3636
}),
3737
mocks: {
3838
res: resMock,

0 commit comments

Comments
 (0)