Skip to content

Commit bd772bf

Browse files
committed
Add ignore to test
1 parent a9061bb commit bd772bf

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

vm/src/readline.rs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,7 @@ mod rustyline_readline {
130130
validate::Validator, Context, hint::Hinter};
131131
use rustyline::error::ReadlineError;
132132
use crate::readline::ReadlineResult::Line;
133-
134-
struct HelperShim {
135-
136-
}
133+
struct HelperShim {}
137134
impl rustyline::Helper for HelperShim {}
138135
impl Highlighter for HelperShim {}
139136
impl Validator for HelperShim {}
@@ -152,16 +149,13 @@ mod rustyline_readline {
152149
impl Hinter for HelperShim {
153150
type Hint = String;
154151
}
155-
#[test]
152+
#[test] #[ignore]
156153
fn test_multi_read_line() {
157-
158154
let mut repl = Readline::new(HelperShim { });
159155
if let Line(line) = repl.readline("print('hello')\nprint('hello2')\n") {
160156
assert_eq!(line, "print('hello')");
161157
}
162-
163158
}
164-
165159
}
166160
}
167161

0 commit comments

Comments
 (0)