aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 967f8c4..7d63354 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -809,7 +809,7 @@ mod tests {
"Test produced incorrect result"
},
};
- println!(" #### {} ####", msg.red());
+ eprintln!(" #### {} ####", msg.red());
panic!(msg);
}
@@ -823,7 +823,7 @@ mod tests {
Ok(()) => {},
Err(errs) => {
for e in errs.iter() {
- println!("{}", e);
+ eprintln!("{}", e);
}
eprintln!(" {} - failed\n", stringify!($fn));
unreachable!();