Skip to content

Commit

Permalink
Fix suggestion tests
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jul 29, 2019
1 parent 1092740 commit e32524a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/fsharp/Compiler/ErrorMessages/SuggestionsTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ open System.Collectons
FSharpErrorSeverity.Error
39
(2, 13, 2, 23)
"The namespace 'Collectons' is not defined. Maybe you want one of the following:\r\n Collections"
"The namespace 'Collectons' is not defined."


[<Test>]
Expand Down Expand Up @@ -251,7 +251,7 @@ let x : System.Collections.Generic.Lst = ResizeArray()
FSharpErrorSeverity.Error
39
(2, 36, 2, 39)
"The type 'Lst' is not defined in 'System.Collections.Generic'. Maybe you want one of the following:\r\n List"
"The type 'Lst' is not defined in 'System.Collections.Generic'. Maybe you want one of the following:\r\n List\r\n IList\r\n List`1""
[<Test>]
Expand All @@ -263,7 +263,7 @@ let x = System.DateTie.MaxValue
FSharpErrorSeverity.Error
39
(2, 16, 2, 23)
"The value, constructor, namespace or type 'DateTie' is not defined. Maybe you want one of the following:\r\n DateTime"
"The value, constructor, namespace or type 'DateTie' is not defined. Maybe you want one of the following:\r\n DateTime\r\n DateTimeKind\r\n DateTimeOffset\r\n Data"
[<Test>]
Expand Down

0 comments on commit e32524a

Please sign in to comment.