Skip to content

Commit

Permalink
Fix now-incorrect test values
Browse files Browse the repository at this point in the history
  • Loading branch information
mnadareski committed Dec 19, 2024
1 parent 42680b9 commit 6f8d27b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
- Remove use of psxt001
- Minor formatting tweaks; add TODO
- Use simpler cuesheet reader in Redumper
- Fix now-incorrect test values

### 3.2.4 (2024-11-24)

Expand Down
4 changes: 2 additions & 2 deletions MPF.Processors.Test/RedumperTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void GenerateArtifacts_Valid_Filled()
string? basePath = Path.Combine(Environment.CurrentDirectory, "TestData", "Redumper", "CDROM", "test");
var processor = new Redumper(RedumpSystem.IBMPCcompatible, MediaType.CDROM);
var actual = processor.GenerateArtifacts(basePath);
Assert.Equal(11, actual.Count);
Assert.Equal(9, actual.Count);
}

#endregion
Expand Down Expand Up @@ -163,7 +163,7 @@ public void GetZippableFilePaths_Valid_Filled()
string? basePath = Path.Combine(Environment.CurrentDirectory, "TestData", "Redumper", "CDROM", "test");
var processor = new Redumper(RedumpSystem.IBMPCcompatible, MediaType.CDROM);
var actual = processor.GetZippableFilePaths(basePath);
Assert.Equal(11, actual.Count);
Assert.Equal(9, actual.Count);
}

#endregion
Expand Down

0 comments on commit 6f8d27b

Please sign in to comment.