File tree 1 file changed +2
-5
lines changed
StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp11/Lightup
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 1
1
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2
2
// Licensed under the MIT License. See LICENSE in the project root for license information.
3
3
4
- // Tests calls where nullability rules are not obeyed
5
- #pragma warning disable CS8604 // Possible null reference argument.
6
-
7
4
namespace StyleCop . Analyzers . Test . Lightup
8
5
{
9
6
using System ;
@@ -18,8 +15,8 @@ public class IImportScopeWrapperCSharp11UnitTests
18
15
public void TestNull ( )
19
16
{
20
17
object ? obj = null ;
21
- Assert . False ( IImportScopeWrapper . IsInstance ( obj ) ) ;
22
- var wrapper = IImportScopeWrapper . FromObject ( obj ) ;
18
+ Assert . False ( IImportScopeWrapper . IsInstance ( obj ! ) ) ;
19
+ var wrapper = IImportScopeWrapper . FromObject ( obj ! ) ;
23
20
Assert . Throws < NullReferenceException > ( ( ) => wrapper . Aliases ) ;
24
21
}
25
22
You can’t perform that action at this time.
0 commit comments