Skip to content

Commit

Permalink
[MouseWithoutBorders] - fixing resource filename casing - microsoft#3…
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeclayton committed Sep 27, 2024
1 parent 23fbaf5 commit 4642ae8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ static string NormalizeLog(string log)

// get the expected test result from an embedded resource
var assembly = Assembly.GetExecutingAssembly();
var resourceName = $"{typeof(LoggerTests).Namespace}.logger.privatedump.expected.txt";
var resourceName = $"{typeof(LoggerTests).Namespace}.Logger.PrivateDump.expected.txt";
using var stream = assembly.GetManifestResourceStream(resourceName)
?? throw new InvalidOperationException();
using var streamReader = new StreamReader(stream);
Expand Down

0 comments on commit 4642ae8

Please sign in to comment.