Skip to content

Commit

Permalink
Misc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wang-q committed Aug 1, 2023
1 parent 40850d7 commit d314cc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmd_rgr/pl_2rmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ pub fn make_subcommand() -> Command {
.arg(
Arg::new("outfile")
.short('o')
.long("outdir")
.long("outfile")
.num_args(1)
.default_value("PL-2rmp")
.help("Output location"),
Expand Down
2 changes: 1 addition & 1 deletion tests/cli_rgr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ fn command_pl_2rmp() -> anyhow::Result<()> {
.unwrap();
let stdout = String::from_utf8(output.stdout).unwrap();

assert_eq!(stdout.lines().count(), 16);
assert!(stdout.lines().count() > 1);
assert!(&tempdir.path().join("replaced.tsv").is_file());

Check failure on line 442 in tests/cli_rgr.rs

View workflow job for this annotation

GitHub Actions / Build stable on ubuntu-latest

assertion failed: &tempdir.path().join(\"replaced.tsv\").is_file()

tempdir.close()?;
Expand Down

0 comments on commit d314cc8

Please sign in to comment.