Skip to content

Commit

Permalink
Post merge cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpar committed Jul 4, 2021
1 parent 4648371 commit f7bbbca
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Test/VimCoreTest/CommonOperationsIntegrationTest.cs
Expand Up @@ -1273,7 +1273,7 @@ public void GoToDefinition5()
Assert.Equal(Resources.Common_GotoDefFailed("foo"), res.AsFailed().Error);
}

[Vs2017AndAboveWpfFact]
[WpfFact]
public void PeekDefinition1()
{
Create("foo");
Expand All @@ -1284,7 +1284,7 @@ public void PeekDefinition1()
Assert.Equal(_textView.GetCaretVirtualPoint(), _vimBuffer.JumpList.LastJumpLocation.Value);
}

[Vs2017AndAboveWpfFact]
[WpfFact]
public void PeekDefinition2()
{
Create("foo");
Expand All @@ -1298,7 +1298,7 @@ public void PeekDefinition2()
/// <summary>
/// Make sure we don't crash when nothing is under the cursor
/// </summary>
[Vs2017AndAboveWpfFact]
[WpfFact]
public void PeekDefinition3()
{
Create(" foo");
Expand All @@ -1308,7 +1308,7 @@ public void PeekDefinition3()
Assert.True(res.IsFailed);
}

[Vs2017AndAboveWpfFact]
[WpfFact]
public void PeekDefinition4()
{
Create(" foo");
Expand All @@ -1319,7 +1319,7 @@ public void PeekDefinition4()
Assert.Equal(Resources.Common_GotoDefNoWordUnderCursor, res.AsFailed().Error);
}

[Vs2017AndAboveWpfFact]
[WpfFact]
public void PeekDefinition5()
{
Create("foo bar baz");
Expand Down
4 changes: 2 additions & 2 deletions Test/VimCoreTest/NormalModeIntegrationTest.cs
Expand Up @@ -224,7 +224,7 @@ public void ControlClick()
Assert.Equal(0, _vimHost.PeekDefinitionCount);
}

[Vs2017AndAboveWpfFact]
[WpfFact]
public void ControlClickPeek()
{
Create("cat dog bear", "");
Expand Down Expand Up @@ -9691,7 +9691,7 @@ public void GoToLinkWithMouse()
Assert.Equal(0, _vimHost.PeekDefinitionCount);
}

[Vs2017AndAboveWpfFact]
[WpfFact]
public void GoToLinkWithMousePeek()
{
Create("foo https://github.com/VsVim/VsVim bar", "");
Expand Down
2 changes: 1 addition & 1 deletion Test/VimWpfTest/VimMouseProcessorTest.cs
Expand Up @@ -53,7 +53,7 @@ public void GoToDefinition()
Assert.Equal(0, VimHost.PeekDefinitionCount);
}

[Vs2017AndAboveWpfFact]
[WpfFact]
public void PeekDefinition()
{
SetVs2017AndAboveEditorOptionValue(_textView.Options, EditorOptionsUtil.ClickGoToDefOpensPeekId, true);
Expand Down

0 comments on commit f7bbbca

Please sign in to comment.