Catch a few left over references to v4
Rob Mensching committed
Apr 18, 2023 at 12:24 UTC
be3e3294cc62b622a67acfc206d1a98b1a41a0cc
3 files changed
+5
-5
.github/workflows/build.yml
+1
-1
@@ -1,4 +1,4 @@
1
-name: Build WiX Toolset v4
1
+name: Build WiX Toolset v5
2
3
on:
4
push:
.github/workflows/test-report.yml
+2
-2
@@ -1,8 +1,8 @@
1
-name: Build WiX Toolset v4 Test Report
1
+name: Build WiX Toolset v5 Test Report
2
3
on:
4
workflow_run:
5
- workflows: [ 'Build WiX Toolset v4' ]
5
+ workflows: [ 'Build WiX Toolset v5' ]
6
types: [ completed ]
7
branches-ignore:
8
- master
src/test/burn/WixToolsetTest.BurnE2E/CacheTests.cs
+2
-2
@@ -244,7 +244,7 @@ namespace WixToolsetTest.BurnE2E
244
{
245
var baseTempPath = dfs.GetFolder(true);
246
var logPath = bundleA.Install(0, $"-burn.engine.working.directory=\"{baseTempPath}\"");
247
- Assert.True(LogVerifier.MessageInLogFileRegex(logPath, $"Burn x86 v4.*, Windows v.* \\(Build .*: Service Pack .*\\), path: {baseTempPath.Replace("\\", "\\\\")}\\\\.*\\\\.cr\\\\BundleA.exe"));
247
+ Assert.True(LogVerifier.MessageInLogFileRegex(logPath, $"Burn x86 v5.*, Windows v.* \\(Build .*: Service Pack .*\\), path: {baseTempPath.Replace("\\", "\\\\")}\\\\.*\\\\.cr\\\\BundleA.exe"));
248
}
249
}
250
@@ -280,7 +280,7 @@ namespace WixToolsetTest.BurnE2E
280
}
281
282
var logPath = bundleA.Install();
283
- Assert.True(LogVerifier.MessageInLogFileRegex(logPath, $"Burn x86 v4.*, Windows v.* \\(Build .*: Service Pack .*\\), path: {baseTempPath.Replace("\\", "\\\\")}\\\\.*\\\\.cr\\\\BundleA.exe"));
283
+ Assert.True(LogVerifier.MessageInLogFileRegex(logPath, $"Burn x86 v5.*, Windows v.* \\(Build .*: Service Pack .*\\), path: {baseTempPath.Replace("\\", "\\\\")}\\\\.*\\\\.cr\\\\BundleA.exe"));
284
}
285
}
286
finally