Skip to content

Commit

Permalink
Fix incorrect mapping of review.include_ignored (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Jan 4, 2023
1 parent 424e116 commit 5d1e3c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/env.rs
Expand Up @@ -233,7 +233,7 @@ impl ToolConfig {
.and_then(|x| x.as_bool())
.unwrap_or(false),
#[cfg(feature = "_cargo_insta_internal")]
review_include_ignored: resolve(&cfg, &["test", "include_ignored"])
review_include_ignored: resolve(&cfg, &["review", "include_ignored"])
.and_then(|x| x.as_bool())
.unwrap_or(false),
})
Expand Down

0 comments on commit 5d1e3c1

Please sign in to comment.