Skip to content

Commit ea0d77e

Browse files
committed
Merge and fix test break
1 parent f7a04a6 commit ea0d77e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/CsWin32Generator.Tests/CsWin32GeneratorTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,15 @@ public async Task TestPlatformCaseSensitivity(string platform)
9797
{
9898
this.platform = platform;
9999
this.nativeMethods.Add("SetWindowLongPtr");
100-
await this.InvokeGeneratorAndCompile();
100+
await this.InvokeGeneratorAndCompile($"{nameof(this.TestPlatformCaseSensitivity)}_{platform}");
101101
}
102102

103103
[Fact]
104104
public async Task TestGenerateCoCreateableClass()
105105
{
106106
// If we need CharSet _and_ we generate something in Windows.Win32.System, the partially qualified reference breaks.
107107
this.nativeMethods.Add("ShellLink");
108-
await this.InvokeGeneratorAndCompile();
108+
await this.InvokeGeneratorAndCompileFromFact();
109109

110110
var shellLinkType = Assert.Single(this.FindGeneratedType("ShellLink"));
111111

0 commit comments

Comments
 (0)