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 e5db4ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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 @@ -393,8 +393,8 @@ public async Task FilesFormattedInGeneratedProject_WhenIncludingGeneratedCode()
exclude: EmptyFilesList,
includeGenerated: true,
expectedExitCode: 0,
expectedFilesFormatted: 1,
expectedFileCount: 1);
expectedFilesFormatted: 3,
expectedFileCount: 3);
}

[Fact]
Expand Down

0 comments on commit e5db4ee

Please sign in to comment.