From 6284af27f37cad2504f1719869842bbc333feda3 Mon Sep 17 00:00:00 2001 From: Matt Travers Date: Mon, 13 May 2024 12:31:02 -0400 Subject: [PATCH] Fixed lint issue --- front-end/src/app/shared/services/transaction.service.spec.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/front-end/src/app/shared/services/transaction.service.spec.ts b/front-end/src/app/shared/services/transaction.service.spec.ts index 8a9ba549b0..393bc806c7 100644 --- a/front-end/src/app/shared/services/transaction.service.spec.ts +++ b/front-end/src/app/shared/services/transaction.service.spec.ts @@ -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();