Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove unnecessary double ticks from NameResolution tests
  • Loading branch information
kMutagene committed Jul 16, 2019
commit 938940d36a6dceb947a68dbb9c7c76c73730a7d6
6 changes: 3 additions & 3 deletions tests/fsharp/Compiler/ErrorMessages/NameResolutionTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ open NUnit.Framework
open FSharp.Compiler.SourceCodeServices

[<TestFixture>]
module ``NameResolutionTests`` =
module NameResolutionTests =

[<Test>]
let `` FieldNotInRecord `` () =
let FieldNotInRecord () =
CompilerAssert.TypeCheckSingleError
"""
type A = { Hello:string; World:string }
Expand All @@ -27,7 +27,7 @@ let r:F = { Size=3; Height=4; Wall=1 }
"The record type 'F' does not contain a label 'Wall'."

[<Test>]
let `` RecordFieldProposal `` () =
let RecordFieldProposal () =
CompilerAssert.TypeCheckSingleError
"""
type A = { Hello:string; World:string }
Expand Down