[Crate] Apply cargo clippy fixes

This commit is contained in:
CosminPerRam 2023-05-30 15:49:35 +03:00
parent d302d1173f
commit 0ceb31bf86
2 changed files with 3 additions and 3 deletions

View file

@ -62,7 +62,7 @@ mod tests {
#[test]
fn test_gdresult_err() {
let result: GDResult<u32> = Err(GDError::InvalidInput);
assert_eq!(result.is_err(), true);
assert!(result.is_err());
}
// Testing the Display trait for the GDError type