Skip to content

Commit f7501e3

Browse files
committed
Fix typo
1 parent 4aae250 commit f7501e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Components/test/E2ETest/Tests/ErrorBoundaryTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public void CanHandleErrorsAfterDisposingComponent()
130130
public void CanHandleErrorsAfterDisposingErrorBoundaryComponent()
131131
{
132132
var container = Browser.Exists(By.Id("multiple-errors-at-once-test"));
133-
container.FindElement(By.ClassName("throw-miltiple-errors")).Click();
133+
container.FindElement(By.ClassName("throw-multiple-errors")).Click();
134134
// The error boundary is still there, so we see the error message
135135
Browser.Collection(() => container.FindElements(By.ClassName("error-message")),
136136
elem => Assert.Equal("OnInitializedAsyncError", elem.Text));

src/Components/test/testassets/BasicTestApp/ErrorBoundaryTest/ErrorBoundaryCases.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
</ErrorContent>
8484
</ErrorBoundary>
8585
}
86-
<button class="throw-miltiple-errors" @onclick="@(() => twoErrorsInChild = true)">Throw multiple errors in child</button>
86+
<button class="throw-multiple-errors" @onclick="@(() => twoErrorsInChild = true)">Throw multiple errors in child</button>
8787
</div>
8888

8989
<hr />

0 commit comments

Comments
 (0)