commit: 0a35ce6bf400e6f82f656c690bb6773bd4cafa02
parent e687194c39f611c8909e6c40d9091210476e589e
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Tue, 7 Jan 2025 17:12:40 +0100
Fix "Mach-O" typo in @test
Fixes commit f1f1ebcb3833d906c9d68d580014a7e2eb9502de
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/main.ha b/main.ha
@@ -223,7 +223,7 @@ fn id_blob(filename: str) (void | str | fs::error | io::error) = {
("Unix ar(1)", "test/fixtures/hello.a"),
("Erlang FOR1 BEAM", "test/fixtures/hello.beam"),
("Erlang #! BEAM", "test/fixtures/hello.beam.escript"),
- ("Java .class / MachO exec", "test/fixtures/hello.class"),
+ ("Java .class / Mach-O exec", "test/fixtures/hello.class"),
("Squirrel bytecode", "test/fixtures/hello.cnut"),
("Emacs Lisp bytecode", "test/fixtures/hello.elc"),
("WinNT EXE", "test/fixtures/hello.exe"),
@@ -241,7 +241,7 @@ fn id_blob(filename: str) (void | str | fs::error | io::error) = {
("Python Pickle v5", "test/fixtures/pickle/hello.5.pickle"),
("Apple PEF", "test/fixtures/qemu_vga.ndrv"),
//("", "test/fixtures/option.rom"),
- ("MachO exec", "test/fixtures/macos-arm64.o"),
+ ("Mach-O exec", "test/fixtures/macos-arm64.o"),
];
for (let i = 0z; i < len(blobs); i += 1) {