From 6a860bc7d51a51b2f00eefc47e780cec2669e18a Mon Sep 17 00:00:00 2001 From: Joey Robichaud Date: Fri, 28 Aug 2020 16:28:32 -0700 Subject: [PATCH] Fix file counts in tests --- tests/CodeFormatterTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/CodeFormatterTests.cs b/tests/CodeFormatterTests.cs index 370c0f3698..cdce8b3647 100644 --- a/tests/CodeFormatterTests.cs +++ b/tests/CodeFormatterTests.cs @@ -381,7 +381,7 @@ public async Task NoFilesFormattedInGeneratedProject_WhenNotIncludingGeneratedCo includeGenerated: false, expectedExitCode: 0, expectedFilesFormatted: 0, - expectedFileCount: 1); + expectedFileCount: 3); } [Fact] @@ -394,7 +394,7 @@ public async Task FilesFormattedInGeneratedProject_WhenIncludingGeneratedCode() includeGenerated: true, expectedExitCode: 0, expectedFilesFormatted: 1, - expectedFileCount: 1); + expectedFileCount: 3); } [Fact]