Skip to content

Commit 06d5522

Browse files
committed
Fix filename casing in BlakeNewCommandTests
Updated the test case in `BlakeNewCommandTests.cs` to correct the filename from "SamplePAge.md" to "SamplePage.md". This ensures accurate file existence checks on case-sensitive file systems.
1 parent 39c8344 commit 06d5522

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Blake.IntegrationTests/Commands/BlakeNewCommandTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public async Task BlakeNew_DefaultTemplate_CreatesBlazorWasmProject()
7979
FileSystemHelper.AssertDirectoryExists(Path.Combine(projectPath, "Pages"));
8080

8181
// Should contain sample content because init is called with includeSampleContent=true
82-
FileSystemHelper.AssertFileExists(Path.Combine(projectPath, "Pages", "SamplePAge.md"));
82+
FileSystemHelper.AssertFileExists(Path.Combine(projectPath, "Pages", "SamplePage.md"));
8383
}
8484

8585
[Fact]

0 commit comments

Comments
 (0)