Skip to content

Commit 1ff334a

Browse files
committed
Update templateService test to use the correct URL for fetching templates
1 parent bc9383c commit 1ff334a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vscode-extension/packages/core-lib/src/__tests__/unit/templateService.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ describe("TemplateService", () => {
5454
expect(data.list[1].name).toBe("sqsToLambda");
5555
expect(data.list[1].path).toBe("some/path/to/sqs.png");
5656
expect(axios.get).toHaveBeenCalledWith(
57-
"https://example.com/templates.json",
57+
"https://example.com/templates.json/main/cookiecutter.json",
5858
);
5959

6060
axiosGetSpy.mockRestore();

0 commit comments

Comments
 (0)