Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

Fix ReferencesGeneratorsV2 test #127

Merged
merged 1 commit into from
Sep 24, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/Analysis/Engine/Test/AnalysisTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3464,7 +3464,6 @@ public async Task ReferencesGeneratorsV3() {
}

[TestMethod, Priority(0)]
[Ignore("https://github.com/Microsoft/python-language-server/issues/52")]
public async Task ReferencesGeneratorsV2() {
var text = @"
[f for f in x]
Expand All @@ -3488,7 +3487,6 @@ public async Task ReferencesGeneratorsV2() {
);
referencesX.Should().OnlyHaveReferences(
(uri, (2, 7, 2, 8), ReferenceKind.Definition),
(uri, (1, 12, 1, 13), ReferenceKind.Reference),
(uri, (2, 1, 2, 2), ReferenceKind.Reference)
);
referencesG.Should().OnlyHaveReferences(
Expand Down