Skip to content

Commit

Permalink
Fixed clippy defect
Browse files Browse the repository at this point in the history
  • Loading branch information
UebelAndre committed Jun 17, 2021
1 parent b4c0362 commit 008b824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/env_locations/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ fn test() {
let generated_data2 = include_str!(env!("GENERATED_DATA_ABS"));
assert_eq!(generated_data, generated_data2);
// and we should be able to read (and thus execute) our tool
assert_eq!(std::fs::read(env!("SOME_TOOL")).unwrap().is_empty(), false);
assert!(!std::fs::read(env!("SOME_TOOL")).unwrap().is_empty());
}

0 comments on commit 008b824

Please sign in to comment.