Skip to content

Commit ef468be

Browse files
committed
make show_in_summary pub
1 parent ff38645 commit ef468be

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/report/mod.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ pub struct CrateResult {
4646
runs: [Option<BuildTestResult>; 2],
4747
}
4848

49-
string_enum!(pub enum Comparison {
49+
string_enum!(
50+
pub enum Comparison {
5051
Regressed => "regressed",
5152
Fixed => "fixed",
5253
Skipped => "skipped",
@@ -61,7 +62,7 @@ string_enum!(pub enum Comparison {
6162
});
6263

6364
impl Comparison {
64-
fn show_in_summary(self) -> bool {
65+
pub fn show_in_summary(self) -> bool {
6566
match self {
6667
Comparison::Regressed
6768
| Comparison::Fixed

0 commit comments

Comments
 (0)