diff --git a/src/bin_foreign_document_test.rs b/src/bin_foreign_document_test.rs index 21cb2d01..52ca788d 100644 --- a/src/bin_foreign_document_test.rs +++ b/src/bin_foreign_document_test.rs @@ -96,8 +96,8 @@ struct SingleFileResult { #[derive(Debug)] pub(crate) enum TestStatus { - Good, - Bad, + Pass, + Fail, } impl TestConfig { @@ -121,9 +121,9 @@ impl SingleFile { Ok(SingleFileResult { file_path: self.file_path, status: if result.is_ok() { - TestStatus::Good + TestStatus::Pass } else { - TestStatus::Bad + TestStatus::Fail }, }) }