Skip to content

Commit cae7967

Browse files
committed
Improve variable name
1 parent d2c116e commit cae7967

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RubberduckTests/Inspections/ImplicitlyTypedConstInspectionTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ public class ImplicitlyTypedConstInspectionTests : InspectionTestsBase
1414
[Category("Inspections")]
1515
public void InspectionName()
1616
{
17-
var inspection = new ImplicitlyTypedConstInspection(null);
17+
var inspectionUnderTest = new ImplicitlyTypedConstInspection(null);
1818

1919
var expected = nameof(ImplicitlyTypedConstInspection);
20-
var actual = inspection.Name;
20+
var actual = inspectionUnderTest.Name;
2121
Assert.AreEqual(expected, actual);
2222
}
2323

0 commit comments

Comments
 (0)