Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
santoshdasa12345 committed Dec 17, 2024
1 parent 90ee4d5 commit ddada03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit-client/assets/javascripts/lib/xhr.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ describe('XHR', () => {
const params = {}
XHR.updateOutlet(res, params)
if (Object.keys(params).length > 0) {
const query = new URLSearchParams(params).toString();
history.push({ search: query });
const query = new URLSearchParams(params).toString()
history.push({ search: query })
}
expect(history.location.search).to.equal('')
})
Expand Down

0 comments on commit ddada03

Please sign in to comment.