Skip to content

Commit

Permalink
Fix linter after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
fhinkel committed Oct 30, 2020
1 parent e80484b commit e12134b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appengine/analytics/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const trackEvent = (category, action, label, value) => {
ev: value,
};

return axios.get('http://www.google-analytics.com/debug/collect', {
return fetch('http://www.google-analytics.com/debug/collect', {
params: data,
});
};
Expand Down
2 changes: 1 addition & 1 deletion functions/security/test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const getSample = () => {

return {
sample: proxyquire('../', {
"node-fetch": fetchMock,
'node-fetch': fetchMock,
}),
mocks: {
res: resMock,
Expand Down

0 comments on commit e12134b

Please sign in to comment.