Skip to content

Commit 6b56ada

Browse files
committed
Fix unit tests
1 parent fc25346 commit 6b56ada

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tst/unit/handlers/CodeLensHandler.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ describe('CodeLensHandler', () => {
6565
const result = await handler(params, CancellationToken.None);
6666

6767
expect(result).toHaveLength(3); // 2 stack actions + 1 managed resource
68-
expect(result[0].command?.title).toBe('Dry Run Deployment');
69-
expect(result[1].command?.title).toBe('Deploy');
68+
expect(result[0].command?.title).toBe('Dry Run Template');
69+
expect(result[1].command?.title).toBe('Deploy Template');
7070
expect(result[2].command?.title).toBe('Open Stack Template');
7171
});
7272

0 commit comments

Comments
 (0)