Skip to content

Commit b96deed

Browse files
committed
fix expected output of pretty/cast-lt and issue-4264 tests
1 parent f0b1a78 commit b96deed

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

src/test/pretty/cast-lt.pp

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#[prelude_import]
44
use std::prelude::v1::*;
55
#[macro_use]
6-
extern crate std as std;
6+
extern crate std;
77
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
88
// file at the top-level directory of this distribution and at
99
// http://rust-lang.org/COPYRIGHT.
@@ -21,4 +21,3 @@
2121
macro_rules! negative(( $ e : expr ) => { $ e < 0 });
2222

2323
fn main() { (1 as i32) < 0; }
24-

src/test/pretty/cast-lt.rs

-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ macro_rules! negative {
1919
fn main() {
2020
negative!(1 as i32);
2121
}
22-

src/test/pretty/issue-4264.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[prelude_import]
22
use std::prelude::v1::*;
33
#[macro_use]
4-
extern crate std as std;
4+
extern crate std;
55
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
66
// file at the top-level directory of this distribution and at
77
// http://rust-lang.org/COPYRIGHT.

0 commit comments

Comments
 (0)