Skip to content

Commit ee5e75d

Browse files
committed
Fix test
Expected should come first
1 parent fb72880 commit ee5e75d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/arch/zx48k/optimizer/test_optimizer_asm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def test_raises_error_on_empty_instruction(self):
1616

1717
def test_unknown_instruction(self):
1818
a = asm.Asm(' unknown instr ')
19-
self.assertEqual(a.bytes, ())
19+
self.assertEqual((), a.bytes)
2020

2121
def test_simplify_arg(self):
2222
a = helpers.simplify_asm_args('ld a, (126 - 1)')

0 commit comments

Comments
 (0)