Skip to content

Commit c3b3968

Browse files
committed
Fix UpdatePowerShell test for new LTS release
1 parent b543ecd commit c3b3968

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/features/UpdatePowerShell.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ describe("UpdatePowerShell feature", function () {
112112
const updater = new UpdatePowerShell(settings, testLogger, version);
113113
// @ts-expect-error method is private.
114114
const tag: string | undefined = await updater.maybeGetNewRelease();
115-
// NOTE: This will need to be updated each time an LTS goes out of support.
116-
assert(tag?.startsWith("v7.2"));
115+
// NOTE: This will need to be updated each time an LTS is released.
116+
assert(tag?.startsWith("v7.4"));
117117
});
118118

119119
it("Would update to stable", async function() {

0 commit comments

Comments
 (0)