Skip to content

Commit

Permalink
Fix a test that do not compile
Browse files Browse the repository at this point in the history
  • Loading branch information
Krusty/Benediction committed Jun 15, 2024
1 parent 5991f60 commit 654b7fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpclib-cpr/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ mod test {

#[test]
fn test_cartrdige_code() {
assert_eq!("cb00", CartridgeBank::code_for(0).as_str());
assert_eq!("cb31", CartridgeBank::code_for(31).as_str());
assert_eq!("cb00", CartridgeBank::code_for(0));
assert_eq!("cb31", CartridgeBank::code_for(31));
}
}

0 comments on commit 654b7fb

Please sign in to comment.