remove invalid test

This commit is contained in:
collin 2020-07-06 06:43:32 -07:00
parent 7a04fd9e0e
commit 2e1a1c3075

View File

@ -70,13 +70,3 @@ fn test_input_fail_bool() {
let _err = get_error(program);
}
#[test]
fn test_input_fail_none() {
let bytes = include_bytes!("input.leo");
let mut program = parse_program(bytes).unwrap();
program.set_inputs(vec![None]);
let _err = get_error(program);
}