Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Achiefs/fim into 122-auid-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
okynos committed Nov 21, 2023
2 parents b4016d9 + ba6d03c commit ae47851
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/auditevent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ mod tests {
]),
HashMap::<String, String>::from([
(String::from("nametype"), String::from("nametype")),
(String::from("name"), String::from("/tmp")),
(String::from("name"), String::from("/tmp/test.txt")),
(String::from("ogid"), String::from("ogid")),
(String::from("rdev"), String::from("rdev")),
(String::from("cap_fver"), String::from("cap_fver")),
Expand Down Expand Up @@ -680,8 +680,8 @@ mod tests {
assert_eq!(String::from("FIM"), event.node);
assert_eq!(String::from(config::VERSION), event.version);
assert_eq!(String::from("/tmp"), event.path);
assert_eq!(String::from("tmp"), event.file);
assert_eq!(4096, event.size);
assert_eq!(String::from("test.txt"), event.file);
assert_eq!(0, event.size);
//assert_eq!(..., event.labels);
//assert_eq!(..., event.parent);
assert_eq!(String::from("nametype"), event.operation);
Expand Down

0 comments on commit ae47851

Please sign in to comment.