Skip to content

Commit d4ec227

Browse files
committed
Fix path casing in test
1 parent f3786fd commit d4ec227

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public void Build_Works_WithLibraryUsingHintPath()
9494
reference.Name = "Reference";
9595
reference.Add(new XElement(
9696
"HintPath",
97-
Path.Combine("..", "razorclasslibrary", "bin", "debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll")));
97+
Path.Combine("..", "razorclasslibrary", "bin", "Debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll")));
9898
}
9999
});
100100

src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public void Publish_Works_WithLibraryUsingHintPath()
119119
reference.Name = "Reference";
120120
reference.Add(new XElement(
121121
"HintPath",
122-
Path.Combine("..", "razorclasslibrary", "bin", "debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll")));
122+
Path.Combine("..", "razorclasslibrary", "bin", "Debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll")));
123123
}
124124
});
125125

0 commit comments

Comments
 (0)