You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 14, 2022. It is now read-only.
return$"Expected {GetSubjectName()} to have only one text edit with newText '{expectedText}' and range {GetName(expectedRange)}{{reason}}, but there are {candidatesWithRange.Length}";
97
+
return$"Expected {{context:subject}} to have only one text edit with newText '{{expectedText}}' a nd range {{expectedRange}}{{reason}}, but there are {candidatesWithRange.Length}";
94
98
}
95
99
96
100
if(candidatesWithRange.Length==0){
97
-
return$"Expected {GetSubjectName()} to have text edit with newText '{expectedText}' in range {GetName(expectedRange)} {{reason}}, but "
101
+
return"Expected {context:subject} to have text edit with newText \'{expectedText}\' in range {expectedRange}{reason}, but "
98
102
+(candidatesWithRange.Length==1
99
103
?$"it has range {GetName(candidatesWithRange[0].range)}"
100
104
:$"they are in ranges {string.Join(", ",candidatesWithRange.Select(te =>GetName(te.range)))}");
0 commit comments