From f08dd58a2ea2e2f0e2e93d6289f0c20d3b5dee3e Mon Sep 17 00:00:00 2001 From: Steffen Forkmann Date: Wed, 31 May 2017 16:01:35 +0200 Subject: [PATCH] fix tests --- .../tests/unittests/DocumentDiagnosticAnalyzerTests.fs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vsintegration/tests/unittests/DocumentDiagnosticAnalyzerTests.fs b/vsintegration/tests/unittests/DocumentDiagnosticAnalyzerTests.fs index 7fc0ecfcd..5af83af15 100644 --- a/vsintegration/tests/unittests/DocumentDiagnosticAnalyzerTests.fs +++ b/vsintegration/tests/unittests/DocumentDiagnosticAnalyzerTests.fs @@ -263,7 +263,7 @@ let x = 3 let y = (*start*)x(*end*) 4 let arr = [| 1; 2; 3 |] """, - expectedMessage = "This value is not a function and cannot be applied") + expectedMessage = "This value is not a function and cannot be applied. But the given value has an indexer. Did you intend to call obj.[index] instead of obj[index]?") [] member public this.Multiline_Bug5449() = @@ -272,7 +272,7 @@ let arr = [| 1; 2; 3 |] let f x = x + 1 let r = (*start*)f 3(*end*) 4 """, - expectedMessage = "This value is not a function and cannot be applied") + expectedMessage = "This value is not a function and cannot be applied.") [] member public this.InComputationExpression_Bug6095_A() = -- GitLab