From daa4d66ce810cb0035585273137fdb29308b0dec Mon Sep 17 00:00:00 2001 From: pavlov346346-source Date: Wed, 9 Sep 2026 10:36:25 +0300 Subject: [PATCH] Fix v17.7.2 stale test version markers --- ops/v1772-fix-tests.mjs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ops/v1772-fix-tests.mjs diff --git a/ops/v1772-fix-tests.mjs b/ops/v1772-fix-tests.mjs new file mode 100644 index 0000000..7ed598e --- /dev/null +++ b/ops/v1772-fix-tests.mjs @@ -0,0 +1,8 @@ +import fs from 'node:fs'; +for(const p of ['tests/static-security.mjs','tests/release-check.mjs','tests/app.spec.mjs']){ + let s=fs.readFileSync(p,'utf8'); + s=s.split("const VERSION = '17.7.1'").join("const VERSION = '17.7.2'"); + s=s.split("version).toBe('17.7.1')").join("version).toBe('17.7.2')"); + fs.writeFileSync(p,s); +} +console.log('v17.7.2 stale test markers fixed');