Skip to content

Commit

Permalink
WPT: fix inverted pass/fail status
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoburns committed Nov 5, 2024
1 parent 2a9c9d3 commit 27981d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/wpt/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,9 @@ async fn process_test_file_with_ref(
let parent = path.parent().unwrap();
fs::create_dir_all(parent).unwrap();
diff.1.save_with_format(path, ImageFormat::Png).unwrap();
TestResult::Pass
} else {
TestResult::Fail
} else {
TestResult::Pass
}
}

Expand Down

0 comments on commit 27981d2

Please sign in to comment.