blob: fcd980a1423bcf0289b224970e6ba4ec10ca0f79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/git-cliff-core/src/command.rs 2025-07-28 22:01:16.272316366 +0200
+++ b/git-cliff-core/src/command.rs 2025-07-28 22:01:42.532450325 +0200
@@ -72,7 +72,7 @@
run("rev", Some(env!("CARGO_PKG_NAME").to_string()), vec![])?.trim()
);
assert_eq!("testing", run("echo 'testing'", None, vec![])?.trim());
- assert!(run("some_command", None, vec![]).is_err());
+ assert!(run("false", None, vec![]).is_err());
Ok(())
}
}
|