From 0fa930b5489dad154dc9aa1d65df2b1906d45609 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Sun, 7 Jan 2018 15:48:19 -0600 Subject: [PATCH] Fix incorrect test name --- tests/mos6502.addr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mos6502.addr.c b/tests/mos6502.addr.c index 30d7566..e71b1f3 100644 --- a/tests/mos6502.addr.c +++ b/tests/mos6502.addr.c @@ -6,7 +6,7 @@ TestSuite(mos6502_addr, .init = setup, .fini = teardown); -Test(mos6502_addr, addr_mode) +Test(mos6502_addr, mode) { cr_assert_eq(mos6502_addr_mode(0xEA), IMP); cr_assert_eq(mos6502_addr_mode(0xD6), ZPX);