Skip to content

Commit

Permalink
fixed name
Browse files Browse the repository at this point in the history
  • Loading branch information
filipw committed Jul 31, 2020
1 parent 7eef7a0 commit 3cd6aea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/OmniSharp.Roslyn.CSharp.Tests/IntellisenseFacts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -496,10 +496,10 @@ void M()

Assert.NotEmpty(completions);

var gStandardCompletion = completions.FirstOrDefault(x => x.CompletionText == @"\w");
Assert.NotNull(gStandardCompletion);
Assert.Equal("word character", gStandardCompletion.DisplayText);
Assert.Contains(@"matches any word character", gStandardCompletion.Description);
var wCompletion = completions.FirstOrDefault(x => x.CompletionText == @"\w");
Assert.NotNull(wCompletion);
Assert.Equal("word character", wCompletion.DisplayText);
Assert.Contains(@"matches any word character", wCompletion.Description);
}

[Fact]
Expand Down

0 comments on commit 3cd6aea

Please sign in to comment.