Skip to content

Commit 105e31a

Browse files
committed
Fix some typos
1 parent d776a1e commit 105e31a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/CommunityToolkit.Mvvm.UnitTests/Test_AsyncRelayCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ async void TestCallback(Action throwAction, Action completeAction)
328328

329329
// See https://github.com/CommunityToolkit/dotnet/issues/108
330330
[TestMethod]
331-
public void Test_AsyncRelayCommand_ExecuteDoesNotRaisesCanExecuteChanged()
331+
public void Test_AsyncRelayCommand_ExecuteDoesNotRaiseCanExecuteChanged()
332332
{
333333
TaskCompletionSource<object?> tcs = new();
334334

@@ -374,7 +374,7 @@ public void Test_AsyncRelayCommand_ExecuteWithoutConcurrencyRaisesCanExecuteChan
374374
}
375375

376376
[TestMethod]
377-
public void Test_AsyncRelayCommand_ExecuteDoesNotRaisesCanExecuteChanged_WithCancellation()
377+
public void Test_AsyncRelayCommand_ExecuteDoesNotRaiseCanExecuteChanged_WithCancellation()
378378
{
379379
TaskCompletionSource<object?> tcs = new();
380380

tests/CommunityToolkit.Mvvm.UnitTests/Test_AsyncRelayCommand{T}.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ async void TestCallback(Action throwAction, Action completeAction)
224224
Assert.IsTrue(success);
225225
}
226226

227-
public void Test_AsyncRelayCommand_ExecuteDoesNotRaisesCanExecuteChanged()
227+
public void Test_AsyncRelayCommand_ExecuteDoesNotRaiseCanExecuteChanged()
228228
{
229229
TaskCompletionSource<object?> tcs = new();
230230

@@ -270,7 +270,7 @@ public void Test_AsyncRelayCommand_ExecuteWithoutConcurrencyRaisesCanExecuteChan
270270
}
271271

272272
[TestMethod]
273-
public void Test_AsyncRelayCommand_ExecuteDoesNotRaisesCanExecuteChanged_WithCancellation()
273+
public void Test_AsyncRelayCommand_ExecuteDoesNotRaiseCanExecuteChanged_WithCancellation()
274274
{
275275
TaskCompletionSource<object?> tcs = new();
276276

0 commit comments

Comments
 (0)