Skip to content

Commit e8048cd

Browse files
committed
Fix RemoveStepOneQuickFix tests after changing stepDefinition in Grammar
1 parent 6f3961a commit e8048cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

RubberduckTests/QuickFixes/RemoveStepOneQuickFixTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ public void StepOne_QuickFixWorks_Remove()
2424

2525
var expectedCode =
2626
@"Sub Foo()
27-
For value = 0 To 5
27+
For value = 0 To 5
2828
Next
2929
End Sub";
3030

31-
this.TestStepOneQuickFix(expectedCode, inputCode);
31+
TestStepOneQuickFix(expectedCode, inputCode);
3232
}
3333

3434
[Test]
@@ -46,12 +46,12 @@ public void StepOne_QuickFixWorks_NestedLoops()
4646
var expectedCode =
4747
@"Sub Foo()
4848
For value = 0 To 5
49-
For value = 0 To 5
49+
For value = 0 To 5
5050
Next
5151
Next
5252
End Sub";
5353

54-
this.TestStepOneQuickFix(expectedCode, inputCode);
54+
TestStepOneQuickFix(expectedCode, inputCode);
5555
}
5656

5757
private void TestStepOneQuickFix(string expectedCode, string inputCode)

0 commit comments

Comments
 (0)