Skip to content

Commit

Permalink
Fix file counts in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeRobich committed Aug 28, 2020
1 parent a3a068c commit 6a860bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/CodeFormatterTests.cs
Expand Up @@ -381,7 +381,7 @@ public async Task NoFilesFormattedInGeneratedProject_WhenNotIncludingGeneratedCo
includeGenerated: false,
expectedExitCode: 0,
expectedFilesFormatted: 0,
expectedFileCount: 1);
expectedFileCount: 3);
}

[Fact]
Expand All @@ -394,7 +394,7 @@ public async Task FilesFormattedInGeneratedProject_WhenIncludingGeneratedCode()
includeGenerated: true,
expectedExitCode: 0,
expectedFilesFormatted: 1,
expectedFileCount: 1);
expectedFileCount: 3);
}

[Fact]
Expand Down

0 comments on commit 6a860bc

Please sign in to comment.