Skip to content

Commit dd5ec2a

Browse files
committed
Switches runner in MockParser I had overlooked before to its synchronous version and unignored inspection that runs now without problems.
1 parent 4aaa311 commit dd5ec2a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

RubberduckTests/Inspections/ObjectVariableNotSetInspectionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Private Sub TestSub(ByRef testParam As Variant)
9494
AssertInputCodeYieldsExpectedInspectionResultCount(input, expectResultCount);
9595
}
9696

97-
[TestMethod, Ignore]
97+
[TestMethod]
9898
[TestCategory("Inspections")]
9999
public void ObjectVariableNotSet_GivenVariantVariableAssignedRange_ReturnsResult()
100100
{

RubberduckTests/Mocks/MockParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static ParseCoordinator Create(IVBE vbe, RubberduckParserState state, IAt
4949
var projectManager = new ProjectManager(state, vbe);
5050
var moduleToModuleReferenceManager = new ModuleToModuleReferenceManager(state);
5151
var parserStateManager = new SynchronousParserStateManager(state);
52-
var referenceRemover = new ReferenceRemover(state, moduleToModuleReferenceManager);
52+
var referenceRemover = new SynchronousReferenceRemover(state, moduleToModuleReferenceManager);
5353
var comSynchronizer = new SynchronousCOMReferenceSynchronizer(
5454
state,
5555
parserStateManager,

0 commit comments

Comments
 (0)