Skip to content

Commit a787476

Browse files
committed
Bump expected versions in updater tests
Now that a new stable and LTS release of PowerShell is out.
1 parent 18db3d8 commit a787476

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/features/UpdatePowerShell.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ describe("UpdatePowerShell feature", function () {
113113
// @ts-expect-error method is private.
114114
const tag: string | undefined = await updater.maybeGetNewRelease();
115115
// NOTE: This will need to be updated each new major LTS.
116-
assert(tag?.startsWith("v7.2"));
116+
assert(tag?.startsWith("v7.4"));
117117
});
118118

119119
it("Would update to stable", async function() {
@@ -127,7 +127,7 @@ describe("UpdatePowerShell feature", function () {
127127
// @ts-expect-error method is private.
128128
const tag: string | undefined = await updater.maybeGetNewRelease();
129129
// NOTE: This will need to be updated each new major stable.
130-
assert(tag?.startsWith("v7.3"));
130+
assert(tag?.startsWith("v7.4"));
131131
});
132132
});
133133
});

0 commit comments

Comments
 (0)