Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Dec 12, 2024
1 parent 9cfb270 commit ae8ebab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/misc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ test! {
args: ("--list"),
stdout: "
Available recipes:
foo # [aliases: f]
foo # [alias: f]
",
}

Expand All @@ -31,7 +31,7 @@ fn alias_listing_with_doc() {
.stdout(
"
Available recipes:
foo # foo command [aliases: f]
foo # foo command [alias: f]
",
)
.status(EXIT_SUCCESS)
Expand All @@ -54,7 +54,7 @@ test! {
args: ("--list"),
stdout: "
Available recipes:
foo PARAM='foo' # [aliases: f]
foo PARAM='foo' # [alias: f]
",
}

Expand Down Expand Up @@ -946,7 +946,7 @@ a:
stdout: r"
Available recipes:
a
b # [aliases: c]
b # [alias: c]
",
}

Expand All @@ -960,7 +960,7 @@ a:
args: ("--list", "--unsorted"),
stdout: r"
Available recipes:
b # [aliases: c]
b # [alias: c]
a
",
}
Expand Down

0 comments on commit ae8ebab

Please sign in to comment.