Skip to content
Prev Previous commit
Next Next commit
Fix missing initialiser in a unittest
We weren't correctly initialising the map test structure.

Signed-off-by: Mark Ryan <[email protected]>
  • Loading branch information
markdryan committed Nov 5, 2022
commit 21d0dcf6e4885585dc96aaf01b7bc22966fce544
2 changes: 1 addition & 1 deletion src/test_content.c
Original file line number Diff line number Diff line change
Expand Up @@ -1276,7 +1276,7 @@ const test_t opcode_tests[] = {
{"ldd", "ldd", 2, {0xED, 0xA8}},
{"lddr", "lddr", 2, {0xED, 0xB8}},
{"ldi", "ldi", 2, {0xED, 0xA0}},
{"map", "map", 1, {}},
{"map", "map", 1, {0x0}},
{"neg", "neg", 2, {0xED, 0x44}},
{"nop", "nop", 1, {0x0}},

Expand Down