From 3927889e663f53383129b86cd8b4f3316b4d25fa Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Fri, 13 Oct 2023 12:14:46 -0400 Subject: [PATCH] Change test status to pass/fail. --- src/bin_foreign_document_test.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 }, }) }