Skip to content

Commit 8eb1383

Browse files
committed
Test case: Don't rely on the output of 'nice 0'
1 parent ae1c0c9 commit 8eb1383

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/bin/mdx-test/expect/os_type/test-case.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ Mdx can skip blocks based on `os_type`:
22

33
```ocaml os_type<>Win32
44
# #require "unix"
5-
# Unix.nice 0
6-
- : int = 0
5+
# ignore (Unix.nice 0)
6+
- : unit = ()
77
```
88

99
```ocaml os_type=Win32
1010
# #require "unix"
11-
# Unix.nice 0
11+
# ignore (Unix.nice 0)
1212
Exception: Invalid_argument "Unix.nice not implemented".
1313
```

0 commit comments

Comments
 (0)