Skip to content

Commit 6c0a36e

Browse files
committed
fix test
1 parent be8b1e2 commit 6c0a36e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*

vsintegration/tests/unittests/Tests.LanguageService.ParameterInfo.fs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,11 +430,15 @@ type UsingMSBuild() =
430430
match l with
431431
| [] -> System.String.Format((*Mark*)
432432
| x :: xs -> f xs"""
433+
// Note, 3 of these 8 are only available on .NET 4.6.1. On .NET 4.5 only 5 overloads are returned.
433434
this.VerifyParameterInfoAtStartOfMarker(fileContent,"(*Mark*)",[["format"; "arg0"];
434435
["format"; "args"];
435436
["provider"; "format"; "args"];
437+
["provider"; "format"; "arg0"];
436438
["format"; "arg0"; "arg1"];
437-
["format"; "arg0"; "arg1"; "arg2"]])
439+
["provider"; "format"; "arg0"; "arg1"];
440+
["format"; "arg0"; "arg1"; "arg2"];
441+
["provider"; "format"; "arg0"; "arg1"; "arg2"]])
438442

439443
(* --- Parameter Info Systematic Tests ------------------------------------------------- *)
440444

0 commit comments

Comments
 (0)