aboutsummaryrefslogtreecommitdiff
path: root/tests/test.rs
diff options
context:
space:
mode:
authorNika Layzell <nika@thelayzells.com>2017-12-12 16:42:55 -0500
committerNika Layzell <nika@thelayzells.com>2017-12-12 16:42:55 -0500
commit9cd13f742adad75337a0f1a3967960a3797178d6 (patch)
tree3eb5b1598925767ec29af73a93f12f3a8494989e /tests/test.rs
parentddea156a8900dea2ef2fbee31f0438909975f72e (diff)
downloadproc-macro2-9cd13f742adad75337a0f1a3967960a3797178d6.tar.gz
Remove some unnecessary eprintln logging calls
Diffstat (limited to 'tests/test.rs')
-rw-r--r--tests/test.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test.rs b/tests/test.rs
index 248ead2..a4ad74e 100644
--- a/tests/test.rs
+++ b/tests/test.rs
@@ -66,7 +66,6 @@ fn fail() {
#[test]
fn span_test() {
fn check_spans(p: &str, mut lines: &[(usize, usize, usize, usize)]) {
- eprintln!("checking {:?}", p);
let ts = p.parse::<TokenStream>().unwrap();
check_spans_internal(ts, &mut lines);
}
@@ -79,8 +78,6 @@ fn span_test() {
if let Some((&(sline, scol, eline, ecol), rest)) = lines.split_first() {
*lines = rest;
- eprintln!("span = {:?}", i.span);
-
let start = i.span.start();
assert_eq!(start.line, sline, "sline did not match for {}", i);
assert_eq!(start.column, scol, "scol did not match for {}", i);