Skip to content

Commit 94397a0

Browse files
committed
fixed expected code to match actual output
1 parent 002e207 commit 94397a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

RubberduckTests/Refactoring/ExtractInterfaceTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ End Sub
8585
public void ExtractInterfaceRefactoring_ImplementProcAndFuncAndPropGetSetLet()
8686
{
8787
//Input
88-
const string inputCode =
89-
@"Public Sub Foo(ByVal arg1 As Integer, ByVal arg2 As String)
88+
const string inputCode = @"
89+
Public Sub Foo(ByVal arg1 As Integer, ByVal arg2 As String)
9090
End Sub
9191
9292
Public Function Fizz(b) As Variant
@@ -104,8 +104,8 @@ Public Property Set Buzz(value)
104104
var selection = new Selection(1, 23, 1, 27);
105105

106106
//Expectation
107-
const string expectedCode =
108-
@"Implements ITestModule1
107+
const string expectedCode = @"
108+
Implements ITestModule1
109109
110110
111111
Private Sub ITestModule1_Foo(ByVal arg1 As Integer, ByVal arg2 As String)

0 commit comments

Comments
 (0)