Skip to content

Commit

Permalink
please clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
krakow10 committed Oct 6, 2024
1 parent e389adf commit f589e4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rbx_reflection_database/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ mod test {
#[test]
fn class_is_a_test() {
let database = get();
assert_eq!(database.class_is_a("Part", "Instance"), true);
assert_eq!(database.class_is_a("Instance", "Part"), false);
assert!(database.class_is_a("Part", "Instance"));
assert!(!database.class_is_a("Instance", "Part"));
}
}

0 comments on commit f589e4a

Please sign in to comment.