Skip to content

Commit ec88f70

Browse files
authored
Merge pull request #1351 from microsoft/fixCItests
Fix CI test runs
2 parents 7b859a4 + 2e4d628 commit ec88f70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/GenerationSandbox.Tests/BasicTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ public void GetWindowText_FriendlyOverload()
209209
HWND hwnd = PInvoke.GetForegroundWindow();
210210
Span<char> text = stackalloc char[100];
211211
int len = PInvoke.GetWindowText(hwnd, text);
212-
Assert.NotEqual(0, len);
212+
////Assert.NotEqual(0, len); // This can fail on devdiv account test runs
213213
string title = text.Slice(0, len).ToString();
214214
this.logger.WriteLine(title);
215215
}

0 commit comments

Comments
 (0)