Skip to content

Commit

Permalink
clippy: test example
Browse files Browse the repository at this point in the history
  • Loading branch information
kingwingfly committed Oct 19, 2024
1 parent 5b40be3 commit 1895515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/normal_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fn normal_test() {
{
let normal = cfg.get::<NormalConfig>();
assert_eq!(normal.value, 0);
let (normal) = cfg.get_many::<(NormalConfig,)>();
let normal = cfg.get_many::<(NormalConfig,)>().0;
assert_eq!(normal.value, 0);
}
{
Expand Down

0 comments on commit 1895515

Please sign in to comment.