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
Copy file name to clipboardExpand all lines: src/bunit/Diffing/HtmlComparer.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
namespaceBunit.Diffing;
9
9
10
10
/// <summary>
11
-
/// Represents a test HTML comparer, that is configured to work with markup generated by the <see cref="ITestRenderer"/> and <see cref="Htmlizer"/> classes.
11
+
/// Represents a test HTML comparer, that is configured to work with markup generated by the <see cref="TestRenderer"/> and <see cref="Htmlizer"/> classes.
Copy file name to clipboardExpand all lines: src/bunit/EventDispatchExtensions/TriggerEventDispatchExtensions.cs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ public static Task TriggerEventAsync(this IElement element, string eventName, Ev
63
63
ArgumentNullException.ThrowIfNull(eventName);
64
64
65
65
varrenderer=element.GetTestContext()?.Renderer
66
-
??thrownewInvalidOperationException($"Blazor events can only be raised on elements rendered with the Blazor test renderer '{nameof(ITestRenderer)}'.");
66
+
??thrownewInvalidOperationException($"Blazor events can only be raised on elements rendered with the Blazor test renderer '{nameof(TestRenderer)}'.");
67
67
68
68
// TriggerEventsAsync will traverse the DOM tree to find
69
69
// all event handlers that needs to be triggered. This is done
@@ -78,7 +78,7 @@ public static Task TriggerEventAsync(this IElement element, string eventName, Ev
78
78
}
79
79
80
80
[SuppressMessage("Globalization","CA1308:Normalize strings to uppercase",Justification="HTML events are standardize to lower case and safe in this context.")]
0 commit comments