Skip to content

Commit a63403b

Browse files
committed
Fix variable names in two resolver tests
1 parent 56feb92 commit a63403b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

RubberduckTests/Grammar/ResolverTests.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6812,13 +6812,13 @@ End Function
68126812

68136813
using (var state = Resolve(vbe.Object))
68146814
{
6815-
var debugAssertDeclaration = state.DeclarationFinder
6815+
var debugPrintDeclaration = state.DeclarationFinder
68166816
.BuiltInDeclarations(DeclarationType.Procedure)
68176817
.Single(declaration => declaration.IdentifierName.Equals("Print")
68186818
&& declaration.QualifiedModuleName.ComponentName.Equals("Debug"));
6819-
var debugAssertReferences = debugAssertDeclaration.References;
6819+
var debugPrintReferences = debugPrintDeclaration.References;
68206820

6821-
Assert.IsFalse(debugAssertReferences.Any());
6821+
Assert.IsFalse(debugPrintReferences.Any());
68226822
}
68236823
}
68246824

@@ -6849,13 +6849,13 @@ End Function
68496849

68506850
using (var state = Resolve(vbe.Object))
68516851
{
6852-
var debugAssertDeclaration = state.DeclarationFinder
6852+
var debugPrintDeclaration = state.DeclarationFinder
68536853
.BuiltInDeclarations(DeclarationType.Procedure)
68546854
.Single(declaration => declaration.IdentifierName.Equals("Print")
68556855
&& declaration.QualifiedModuleName.ComponentName.Equals("Debug"));
6856-
var debugAssertReferences = debugAssertDeclaration.References;
6856+
var debugPrintReferences = debugPrintDeclaration.References;
68576857

6858-
Assert.AreEqual(2, debugAssertReferences.Count());
6858+
Assert.AreEqual(2, debugPrintReferences.Count());
68596859
}
68606860
}
68616861
}

0 commit comments

Comments
 (0)