@@ -332,7 +332,7 @@ public async Task SupportsTwoWayBindingForTextboxes()
332
332
// Trigger the change event to show it updates the property
333
333
//
334
334
// This should always complete synchronously.
335
- var task = renderer . Dispatcher . InvokeAsync ( ( ) => setter . InvokeAsync ( new UIChangeEventArgs { Value = "Modified value" , } ) ) ;
335
+ var task = renderer . Dispatcher . InvokeAsync ( ( ) => setter . InvokeAsync ( new ChangeEventArgs { Value = "Modified value" , } ) ) ;
336
336
Assert . Equal ( TaskStatus . RanToCompletion , task . Status ) ;
337
337
await task ;
338
338
@@ -367,7 +367,7 @@ public async Task SupportsTwoWayBindingForTextareas()
367
367
// Trigger the change event to show it updates the property
368
368
//
369
369
// This should always complete synchronously.
370
- var task = renderer . Dispatcher . InvokeAsync ( ( ) => setter . InvokeAsync ( new UIChangeEventArgs { Value = "Modified value" , } ) ) ;
370
+ var task = renderer . Dispatcher . InvokeAsync ( ( ) => setter . InvokeAsync ( new ChangeEventArgs { Value = "Modified value" , } ) ) ;
371
371
Assert . Equal ( TaskStatus . RanToCompletion , task . Status ) ;
372
372
await task ;
373
373
@@ -404,7 +404,7 @@ public async Task SupportsTwoWayBindingForDateValues()
404
404
//
405
405
// This should always complete synchronously.
406
406
var newDateValue = new DateTime ( 2018 , 3 , 5 , 4 , 5 , 6 ) ;
407
- var task = renderer . Dispatcher . InvokeAsync ( ( ) => setter . InvokeAsync ( new UIChangeEventArgs { Value = newDateValue . ToString ( ) , } ) ) ;
407
+ var task = renderer . Dispatcher . InvokeAsync ( ( ) => setter . InvokeAsync ( new ChangeEventArgs { Value = newDateValue . ToString ( ) , } ) ) ;
408
408
Assert . Equal ( TaskStatus . RanToCompletion , task . Status ) ;
409
409
await task ;
410
410
@@ -440,7 +440,7 @@ public async Task SupportsTwoWayBindingForDateValuesWithFormatString()
440
440
// Trigger the change event to show it updates the property
441
441
//
442
442
// This should always complete synchronously.
443
- var task = renderer . Dispatcher . InvokeAsync ( ( ) => setter . InvokeAsync ( new UIChangeEventArgs { Value = new DateTime ( 2018 , 3 , 5 ) . ToString ( testDateFormat ) , } ) ) ;
443
+ var task = renderer . Dispatcher . InvokeAsync ( ( ) => setter . InvokeAsync ( new ChangeEventArgs { Value = new DateTime ( 2018 , 3 , 5 ) . ToString ( testDateFormat ) , } ) ) ;
444
444
Assert . Equal ( TaskStatus . RanToCompletion , task . Status ) ;
445
445
await task ;
446
446
@@ -559,7 +559,7 @@ public async Task SupportsTwoWayBindingForBoolValues()
559
559
// Trigger the change event to show it updates the property
560
560
//
561
561
// This should always complete synchronously.
562
- var task = renderer . Dispatcher . InvokeAsync ( ( ) => setter . InvokeAsync ( new UIChangeEventArgs ( ) { Value = false , } ) ) ;
562
+ var task = renderer . Dispatcher . InvokeAsync ( ( ) => setter . InvokeAsync ( new ChangeEventArgs ( ) { Value = false , } ) ) ;
563
563
Assert . Equal ( TaskStatus . RanToCompletion , task . Status ) ;
564
564
await task ;
565
565
@@ -595,7 +595,7 @@ public async Task SupportsTwoWayBindingForEnumValues()
595
595
// Trigger the change event to show it updates the property
596
596
//
597
597
// This should always complete synchronously.
598
- var task = renderer . Dispatcher . InvokeAsync ( ( ) => setter . InvokeAsync ( new UIChangeEventArgs { Value = MyEnum . SecondValue . ToString ( ) , } ) ) ;
598
+ var task = renderer . Dispatcher . InvokeAsync ( ( ) => setter . InvokeAsync ( new ChangeEventArgs { Value = MyEnum . SecondValue . ToString ( ) , } ) ) ;
599
599
Assert . Equal ( TaskStatus . RanToCompletion , task . Status ) ;
600
600
await task ;
601
601
0 commit comments