diff --git a/tests/fsharpqa/Source/CompilerOptions/fsc/flaterrors/E_MultiLine01.fs b/tests/fsharpqa/Source/CompilerOptions/fsc/flaterrors/E_MultiLine01.fs
index fcb5e10f2ae..1e21dee32de 100644
--- a/tests/fsharpqa/Source/CompilerOptions/fsc/flaterrors/E_MultiLine01.fs
+++ b/tests/fsharpqa/Source/CompilerOptions/fsc/flaterrors/E_MultiLine01.fs
@@ -3,6 +3,6 @@
//This expression was expected to have type
// ''a list'
//but here has type
-// 'seq<'b>'
+// ''b seq'
List.rev {1..10}
diff --git a/tests/fsharpqa/Source/CompilerOptions/fsc/flaterrors/E_MultiLine02.fs b/tests/fsharpqa/Source/CompilerOptions/fsc/flaterrors/E_MultiLine02.fs
index 511987567fc..6098e469d5b 100644
--- a/tests/fsharpqa/Source/CompilerOptions/fsc/flaterrors/E_MultiLine02.fs
+++ b/tests/fsharpqa/Source/CompilerOptions/fsc/flaterrors/E_MultiLine02.fs
@@ -1,5 +1,5 @@
// #Regression #NoMT #CompilerOptions
// Test that using [--flaterrors] flag multi-line errors are flattened, i.e. concatenated into one-line error message.
-//This expression was expected to have type. ''a list' .but here has type. 'seq<'b>'
+//This expression was expected to have type. ''a list' .but here has type. ''b seq'
List.rev {1..10} |> ignore
diff --git a/tests/fsharpqa/Source/Diagnostics/NONTERM/quoteExpr01.fs b/tests/fsharpqa/Source/Diagnostics/NONTERM/quoteExpr01.fs
index 42e04f7fa44..e6767171375 100644
--- a/tests/fsharpqa/Source/Diagnostics/NONTERM/quoteExpr01.fs
+++ b/tests/fsharpqa/Source/Diagnostics/NONTERM/quoteExpr01.fs
@@ -1,5 +1,5 @@
// #Regression #Diagnostics
// Regression test for FSHARP1.0:2391, FSHARP1.0:1479
-//The result of this expression has type 'seq' and is implicitly ignored
+//The result of this expression has type 'Quotations.Var seq' and is implicitly ignored. Consider using 'ignore' to discard this value explicitly, e.g. 'expr |> ignore', or 'let' to bind the result to a name, e.g. 'let result = expr'.
#light "off"
<@@ 1 @@>.GetFreeVars()