Skip to content

Update tests to properly use [<Fact>] AttributeTargets.Method #16610

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 30, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ xVal**y
Assert.True(triggered, "Completion should trigger after typing an identifier that follows a mathematical operation")

[<Fact>]
let ShouldTriggerCompletionAtStartOfFileWithInsertion =
let ShouldTriggerCompletionAtStartOfFileWithInsertion () =
let fileContents =
"""
l"""
Expand Down Expand Up @@ -888,7 +888,7 @@ type T() =
VerifyNoCompletionList(fileContents, "member this.M(p")

[<Fact>]
let ``Completion list on abstract member type signature contains modules and types but not keywords or functions`` =
let ``Completion list on abstract member type signature contains modules and types but not keywords or functions`` () =
let fileContents =
"""
type Interface =
Expand Down