Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
lfkellogg committed Jan 31, 2024
1 parent 4bc0745 commit 6a98dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/appdistro/client.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ describe("distribution", () => {
});

it("should resolve with ReleaseTest when request succeeds", async () => {
nock(appDistributionOrigin).post(`/v1alpha/${releaseName}`).reply(200, mockReleaseTest);
nock(appDistributionOrigin).post(`/v1alpha/${releaseName}/tests`).reply(200, mockReleaseTest);
await expect(
appDistributionClient.createReleaseTest(releaseName, mockDevices),
).to.be.eventually.deep.eq(mockReleaseTest);
Expand Down

0 comments on commit 6a98dca

Please sign in to comment.