Skip to content

Commit 75424d1

Browse files
committed
Minor cleanup
1 parent 62ad6c1 commit 75424d1

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

RubberduckTests/Inspections/AssignedByValParameterMakeLocalCopyQuickFixTests.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ Dim localArg1 As String
4343
[TestCategory("Inspections")]
4444
public void AssignedByValParameter_LocalVariableAssignment_NameInUse()
4545
{
46-
//Punt if the user-defined is already used in the method
47-
//string userEnteredName = "userInput";
48-
46+
//Punt if the computed is already used in the method
4947
string inputCode =
5048
@"
5149
Public Sub Foo(ByVal arg1 As String)
@@ -143,8 +141,6 @@ End Sub
143141

144142
quickFixResult = ApplyLocalVariableQuickFixToCodeFragment(inputCode, userEnteredName);
145143
Assert.AreEqual(expectedCode, quickFixResult);
146-
147-
148144
}
149145

150146
[TestMethod]
@@ -209,7 +205,6 @@ End Sub"
209205
var quickFixResult = ApplyLocalVariableQuickFixToCodeFragment(inputCode, name);
210206
Assert.AreEqual(expectedCode, quickFixResult);
211207
}
212-
213208
}
214209

215210
[TestMethod]

0 commit comments

Comments
 (0)