Skip to content

Commit

Permalink
Fix EditorConfig tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeRobich committed May 20, 2020
1 parent de77f06 commit 1dd7c36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/OmniSharp.Roslyn.CSharp.Tests/EditorConfigFacts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ public Foo(string som$$ething)

var getResponse = await getRequestHandler.Handle(getRequest);
Assert.NotNull(getResponse.CodeActions);
Assert.Contains(getResponse.CodeActions, f => f.Name == "Create and initialize field 'xxx_something'");
Assert.Contains(getResponse.CodeActions, f => f.Name == "Create and assign field 'xxx_something'");
}
}

Expand Down Expand Up @@ -324,7 +324,7 @@ public Foo(string something)
Line = point.Line,
Column = point.Offset,
FileName = testFile.FileName,
Identifier = "Create and initialize field 'xxx_something'",
Identifier = "Create and assign field 'xxx_something'",
WantsTextChanges = false,
WantsAllCodeActionOperations = true,
Buffer = testFile.Content.Code
Expand Down

0 comments on commit 1dd7c36

Please sign in to comment.