summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2024-01-21 05:47:13 -0500
committerGitHub <noreply@github.com>2024-01-21 05:47:13 -0500
commit5cf17f6015e8fce5a8a0799c70e7a032b7f024ad (patch)
tree033e029966813e74b306819575f2aa20953bdbd4 /tests
parent975e3d776bad3d0111394ae7871b96c513b4f10c (diff)
other: flatten process config struct and clean up help text (#1395)
* refactor: flatten process config field * other: clean up some doc formatting using indoc and breaklines * fix broken test * remove default as that breaks things for now * add test * more tests
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/arg_tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/arg_tests.rs b/tests/integration/arg_tests.rs
index 13ebc5f0..5bb8a6bb 100644
--- a/tests/integration/arg_tests.rs
+++ b/tests/integration/arg_tests.rs
@@ -109,7 +109,7 @@ fn test_invalid_default_widget_1() {
.arg("fake_widget")
.assert()
.failure()
- .stderr(predicate::str::contains("invalid widget name"));
+ .stderr(predicate::str::contains("invalid value"));
}
#[test]