Skip to content

Commit

Permalink
Merge pull request #1929 from fecgov/feature/858
Browse files Browse the repository at this point in the history
858 - Fixed lint issue as part of larger ticket
  • Loading branch information
mjtravers authored May 13, 2024
2 parents db60533 + 6284af2 commit 837a779
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@ describe('TransactionService', () => {
expect(response).toEqual(mockResponse);
});

const req = httpTestingController.expectOne(
`${environment.apiUrl}/transactions/?page=1&ordering=line_label`,
);
const req = httpTestingController.expectOne(`${environment.apiUrl}/transactions/?page=1&ordering=line_label`);
expect(req.request.method).toEqual('GET');
req.flush(mockResponse);
httpTestingController.verify();
Expand Down

0 comments on commit 837a779

Please sign in to comment.