Skip to content

Commit

Permalink
fix bpaf_derive tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pacak committed Feb 7, 2024
1 parent 1cf8b98 commit 56faa42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bpaf_derive/src/top_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ fn custom_bpaf_path_options() {
use ::indirector::bpaf::Parser;
{
let verbose = ::indirector::bpaf::long("verbose").switch();
::indirector::bpaf::construct!(Options { verbose })
::indirector::bpaf::construct!(Options { verbose, })
}
.to_options()
}
Expand All @@ -1238,7 +1238,7 @@ fn custom_bpaf_path_parser() {
use ::indirector::bpaf::Parser;
{
let verbose = ::indirector::bpaf::long("verbose").switch();
::indirector::bpaf::construct!(Items { verbose })
::indirector::bpaf::construct!(Items { verbose, })
}
}
};
Expand Down

0 comments on commit 56faa42

Please sign in to comment.