File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- <?xml version =" 1.0" encoding =" utf-8" ?>
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<Project >
3
3
<PropertyGroup >
4
4
<CompilerGeneratedFilesOutputPath >$(BaseIntermediateOutputPath)\GeneratedFiles</CompilerGeneratedFilesOutputPath >
37
37
<PackageVersion Include =" Microsoft.Extensions.DependencyInjection" Version =" 6.0.0" />
38
38
<PackageVersion Include =" Newtonsoft.Json" Version =" 13.0.3" />
39
39
<PackageVersion Include =" Microsoft.NET.Test.Sdk" Version =" 17.7.2" />
40
- <PackageVersion Include =" xunit.runner.visualstudio" Version =" 2.4.5 " />
41
- <PackageVersion Include =" xunit" Version =" 2.4.2 " />
40
+ <PackageVersion Include =" xunit.runner.visualstudio" Version =" 2.5.1 " />
41
+ <PackageVersion Include =" xunit" Version =" 2.5.1 " />
42
42
<PackageVersion Include =" FluentAssertions" Version =" 6.12.0" />
43
43
<PackageVersion Include =" Verify.Xunit" Version =" 16.9.0" />
44
44
<PackageVersion Include =" Verify.SourceGenerators" Version =" 1.5.0" />
Original file line number Diff line number Diff line change @@ -346,7 +346,7 @@ public void Should_Handle_Exceptions_Tasks()
346
346
OnCompleted ( Subscribed , Unit . Default )
347
347
) ;
348
348
var errorObservable = testScheduler . CreateColdObservable (
349
- OnError ( Subscribed , new NotSameException ( ) , Unit . Default )
349
+ OnError ( Subscribed , new NotSupportedException ( ) , Unit . Default )
350
350
) ;
351
351
var testObserver = testScheduler . CreateObserver < Unit > ( ) ;
352
352
@@ -365,7 +365,7 @@ public void Should_Handle_Exceptions_Tasks()
365
365
. ToArray ( ) ;
366
366
367
367
messages . Should ( ) . Contain ( x => x . Value . Kind == NotificationKind . OnNext && x . Time == Subscribed ) ;
368
- messages . Should ( ) . Contain ( x => x . Value . Kind == NotificationKind . OnError && x . Time == Subscribed * 2 && x . Value . Exception is NotSameException ) ;
368
+ messages . Should ( ) . Contain ( x => x . Value . Kind == NotificationKind . OnError && x . Time == Subscribed * 2 && x . Value . Exception is NotSupportedException ) ;
369
369
messages . Should ( ) . Contain ( x => x . Value . Kind == NotificationKind . OnNext && x . Time == Subscribed * 3 ) ;
370
370
}
371
371
You can’t perform that action at this time.
0 commit comments