From dadc28e5a5af5f9e49b755d0c9df8f9fe9161ed0 Mon Sep 17 00:00:00 2001 From: Tw93 Date: Mon, 23 Mar 2026 20:54:41 +0800 Subject: [PATCH] test(windows): fix installer version regex --- tests/Commands.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Commands.Tests.ps1 b/tests/Commands.Tests.ps1 index a12db6f..bc78a7a 100644 --- a/tests/Commands.Tests.ps1 +++ b/tests/Commands.Tests.ps1 @@ -215,7 +215,7 @@ Describe "Installer Script" { It "Should read the version from VERSION" { $source = Get-Content $script:InstallScript -Raw $source | Should -Match "version\.ps1" - $source | Should -Match "Get-MoleVersionString -RootDir \$script:SourceDir" + $source | Should -Match 'Get-MoleVersionString -RootDir \$script:SourceDir' } }