From ea2ce2b3941d6aa53f46e960005eb4963193555f Mon Sep 17 00:00:00 2001 From: Steffen Forkmann Date: Thu, 1 Jun 2017 15:49:42 +0200 Subject: [PATCH] fix test --- tests/fsharpqa/Source/Warnings/SuggestToUseIndexer.fs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fsharpqa/Source/Warnings/SuggestToUseIndexer.fs b/tests/fsharpqa/Source/Warnings/SuggestToUseIndexer.fs index 7b0ab1082..6ca91a819 100644 --- a/tests/fsharpqa/Source/Warnings/SuggestToUseIndexer.fs +++ b/tests/fsharpqa/Source/Warnings/SuggestToUseIndexer.fs @@ -1,7 +1,7 @@ // #Warnings -//This value is not a function and cannot be applied. Did you intend to access the indexer via d.[index] instead? +//This value is not a function and cannot be applied. Did you intend to access the indexer via d.\[index\] instead? //This value is not a function and cannot be applied.$ -//This value is not a function and cannot be applied. Did you intend to access the indexer via expr.[index] instead?" +//This expression is not a function and cannot be applied. Did you intend to access the indexer via expr.\[index\] instead? let d = [1,1] |> dict let y = d[1] -- GitLab