summaryrefslogtreecommitdiff
path: root/tests/src/args.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/args.rs')
-rw-r--r--tests/src/args.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/args.rs b/tests/src/args.rs
index db5d1a9b..3d1bc28c 100644
--- a/tests/src/args.rs
+++ b/tests/src/args.rs
@@ -23,7 +23,7 @@ pub struct CliArguments {
/// Lists what tests will be run, without actually running them.
#[arg(long, group = "action")]
pub list: bool,
- /// Updates the reference images of non-passing tests.
+ /// Updates the reference output of non-passing tests.
#[arg(short, long, group = "action")]
pub update: bool,
/// The scaling factor to render the output image with.
@@ -100,6 +100,6 @@ impl CliArguments {
pub enum Command {
/// Clears the on-disk test artifact store.
Clean,
- /// Deletes all dangling reference images.
+ /// Deletes all dangling reference output.
Undangle,
}