Skip to content

Commit

Permalink
Fix passing parameter to test added in #108190
Browse files Browse the repository at this point in the history
  • Loading branch information
maraf committed Sep 24, 2024
1 parent 3a20c0b commit 7cd0a5b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public async Task LoadSatelliteAssembly(bool loadAllSatelliteResources)
var result = await RunSdkStyleAppForBuild(new(
Configuration: "Debug",
TestScenario: "SatelliteAssembliesTest",
BrowserQueryString: new Dictionary<string, string> { ["loadAllSatelliteResources"] = loadAllSatelliteResources.ToString() }
BrowserQueryString: new Dictionary<string, string> { ["loadAllSatelliteResources"] = loadAllSatelliteResources.ToString().ToLowerInvariant() }
));
Assert.Collection(
result.TestOutput,
Expand Down

0 comments on commit 7cd0a5b

Please sign in to comment.