Skip to content

Commit e600169

Browse files
Fix review comments
DotNetAnalyzers#3594
1 parent 7ffc577 commit e600169

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp11/Lightup/IImportScopeWrapperCSharp11UnitTests.cs

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
22
// Licensed under the MIT License. See LICENSE in the project root for license information.
33

4-
// Tests calls where nullability rules are not obeyed
5-
#pragma warning disable CS8604 // Possible null reference argument.
6-
74
namespace StyleCop.Analyzers.Test.Lightup
85
{
96
using System;
@@ -18,8 +15,8 @@ public class IImportScopeWrapperCSharp11UnitTests
1815
public void TestNull()
1916
{
2017
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!);
2320
Assert.Throws<NullReferenceException>(() => wrapper.Aliases);
2421
}
2522

0 commit comments

Comments
 (0)