Skip to content

Commit 18cf52a

Browse files
committed
update tspins test to look for 0x7e instead of 0x7b
1 parent b499e7e commit 18cf52a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/src/tspins.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pub fn test() {
3434
"##.trim(), playfield::get_str(&emu).trim());
3535

3636
// check that correct tile is rendered
37-
assert_eq!(emu.ppu.read_byte(&mut *emu.mapper, 0x22CC), 0x7b);
37+
assert_eq!(emu.ppu.read_byte(&mut *emu.mapper, 0x22CC), 0x7E);
3838
// check pixel is actually rendered
3939
assert_eq!(emu.ppu.screen[offset(96, 176) as usize], 0x30);
4040
}

0 commit comments

Comments
 (0)