Skip to content

Commit

Permalink
CMR-10118: Fixes lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dmistry1 committed Oct 17, 2024
1 parent 4694cbb commit d8461ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/__tests__/providerCatalog.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ describe("GET /:provider", () => {

describe("when there are more results available", () => {
it("includes a 'next' link with the correct query parameters", async () => {
sandbox.stub(stac, 'CMR_QUERY_MAX').value(100);
sandbox.stub(stac, "CMR_QUERY_MAX").value(100);
sandbox
.stub(Provider, "getProviders")
.resolves([null, [{ "provider-id": "TEST", "short-name": "TEST" }]]);
Expand Down Expand Up @@ -197,7 +197,7 @@ describe("GET /:provider", () => {

describe("when there are no more results available", () => {
it("does not include a 'next' link", async () => {
sandbox.stub(stac, 'CMR_QUERY_MAX').value(100);
sandbox.stub(stac, "CMR_QUERY_MAX").value(100);
sandbox
.stub(Provider, "getProviders")
.resolves([null, [{ "provider-id": "TEST", "short-name": "TEST" }]]);
Expand Down

0 comments on commit d8461ff

Please sign in to comment.