Skip to content

Commit 364ec2e

Browse files
committed
fixed broken test (IdentifierReference constructor signature was modified)
1 parent 4adf94f commit 364ec2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RubberduckTests/UI/Refactorings/Rename/RenamePresenterTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,9 @@ public void AcquireTarget_MethodRenamingMoreComponents_CorrectTargetChosen()
220220
// add references to the Foo declaration item to simulate prod usage
221221
AddDeclarationItem(context, new Parsing.Selection(3, 5, 3, 8), differentMember, DeclarationType.Procedure, "Foo");
222222
var declarationItem = _listDeclarations[_listDeclarations.Count - 1];
223-
reference = new IdentifierReference(selectedComponent, "Foo", new Parsing.Selection(7, 5, 7, 11), false,context.Object, declarationItem);
223+
reference = new IdentifierReference(selectedComponent, "Foo", new Parsing.Selection(7, 5, 7, 11), context.Object, declarationItem);
224224
AddReference(declarationItem, reference);
225-
reference = new IdentifierReference(selectedComponent, "Foo", symbolSelection, false, context.Object,declarationItem);
225+
reference = new IdentifierReference(selectedComponent, "Foo", symbolSelection, context.Object,declarationItem);
226226
AddReference(declarationItem, reference);
227227

228228
AddDeclarationItem(context, new Parsing.Selection(1, 1, 1, 1), differentMember, DeclarationType.Module, "Module2");

0 commit comments

Comments
 (0)