Skip to content

Commit

Permalink
Fix broken test logic
Browse files Browse the repository at this point in the history
  • Loading branch information
mnadareski committed Jul 16, 2024
1 parent 246e6b8 commit ab8e775
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
- Don't set MediaType if parameters ambiguous
- Fix parameters after extension change
- Fix logic for deducing region from PlayStation ISN (John Veness)
- Fix broken test logic

### 3.2.0 (2024-06-20)

Expand Down
2 changes: 1 addition & 1 deletion MPF.Test/Frontend/Tools/InfoToolTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class InfoToolTests
[InlineData("superhero\\blah&foo.bin", "superhero\\blah&foo.bin")]
public void NormalizeOutputPathsTest(string? outputPath, string? expectedPath)
{
if (!string.IsNullOrWhiteSpace(expectedPath))
if (!string.IsNullOrEmpty(expectedPath))
expectedPath = Path.GetFullPath(expectedPath);

string actualPath = FrontendTool.NormalizeOutputPaths(outputPath, true);
Expand Down

0 comments on commit ab8e775

Please sign in to comment.