Skip to content

Commit 3cbcd8a

Browse files
authored
Fix find all references integration tests (#11640)
https://devdiv.visualstudio.com/DevDiv/_git/VSEditor/pullrequest/618447 renamed a field
2 parents 5b0fd90 + 181a5f2 commit 3cbcd8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Razor/test/Microsoft.VisualStudio.Razor.IntegrationTests/InProcess/FindReferencesWindowInProcess.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ private async Task<IWpfTableControl2> GetFindReferencesWindowAsync(CancellationT
8181

8282
// Dig through to get the Find References control.
8383
var toolWindowType = toolWindow.GetType();
84-
var toolWindowControlField = toolWindowType.GetField("Control");
84+
var toolWindowControlField = toolWindowType.GetField("_control");
8585
var toolWindowControl = toolWindowControlField.GetValue(toolWindow);
8686

8787
// Dig further to get the results table (as opposed to the toolbar).

0 commit comments

Comments
 (0)