Checker fix

This commit is contained in:
Kivanc 2025-12-11 13:56:27 +03:00
parent 2b5356aab5
commit b210fdf9ee

View File

@ -12,7 +12,7 @@ fn main() {
Ok(contents) => {
assert_eq!("This is the file content.", contents);
}
Err(e) => {
Err(_) => {
panic!("Error reading file.");
}