From 9a1e39f08364d7b43de54b091f2780f4c9b6f6cb Mon Sep 17 00:00:00 2001 From: Livar Cunha Date: Mon, 10 Jul 2017 10:57:28 -0700 Subject: [PATCH] Fix wrong number of parameters passed to test when doing the merge. --- .../GivenThatIWantANewAppWithSpecifiedType.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/dotnet-new.Tests/GivenThatIWantANewAppWithSpecifiedType.cs b/test/dotnet-new.Tests/GivenThatIWantANewAppWithSpecifiedType.cs index c432cfd53..b64b3e5c1 100644 --- a/test/dotnet-new.Tests/GivenThatIWantANewAppWithSpecifiedType.cs +++ b/test/dotnet-new.Tests/GivenThatIWantANewAppWithSpecifiedType.cs @@ -31,10 +31,10 @@ namespace Microsoft.DotNet.New.Tests [InlineData("F#", "mstest", false, false)] [InlineData("F#", "xunit", false, false)] [InlineData("F#", "mvc", true, false)] - [InlineData("VB", "console", false)] - [InlineData("VB", "classlib", false)] - [InlineData("VB", "mstest", false)] - [InlineData("VB", "xunit", false)] + [InlineData("VB", "console", false, false)] + [InlineData("VB", "classlib", false, false)] + [InlineData("VB", "mstest", false, false)] + [InlineData("VB", "xunit", false, false)] public void TemplateRestoresAndBuildsWithoutWarnings( string language, string projectType,