Skip to content

Commit 625432c

Browse files
committed
fix format
1 parent a3f8edf commit 625432c

File tree

1 file changed

+6
-4
lines changed
  • library/std/src/sys/pal/unix/process/process_unix

1 file changed

+6
-4
lines changed

Diff for: library/std/src/sys/pal/unix/process/process_unix/tests.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ fn exitstatus_display_tests() {
3030
#[cfg(any(target_arch = "sparc", target_arch = "sparc64"))]
3131
t(0x0137f, "stopped (not terminated) by signal: 19 (SIGCONT)");
3232

33-
#[cfg(not(any(target_arch = "mips",
34-
target_arch = "sparc",
35-
target_arch = "mips64",
36-
target_arch = "sprac64")))]
33+
#[cfg(not(any(
34+
target_arch = "mips",
35+
target_arch = "mips64",
36+
target_arch = "sparc",
37+
target_arch = "sparc64"
38+
)))]
3739
t(0x0137f, "stopped (not terminated) by signal: 19 (SIGSTOP)");
3840

3941
t(0x0ffff, "continued (WIFCONTINUED)");

0 commit comments

Comments
 (0)