Fix tests

This commit is contained in:
Adrian Heine 2020-08-06 19:35:47 +02:00
parent 67b6f90fe0
commit 907fbf95db
3 changed files with 4 additions and 4 deletions

View file

@ -78,7 +78,7 @@ fn no_file() {
#[test]
fn may_not_read_file() {
let symbol = get_symbol(&Path::new("/etc/shadow"));
let symbol = FileSymbol::new(Path::new("/etc/shadow"), "");
assert_eq!(symbol.target_reached().is_err(), true);
}