summaryrefslogtreecommitdiffstats
path: root/tests/arg_tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/arg_tests.rs')
-rw-r--r--tests/arg_tests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/arg_tests.rs b/tests/arg_tests.rs
index c233c14e..3bb05e95 100644
--- a/tests/arg_tests.rs
+++ b/tests/arg_tests.rs
@@ -178,10 +178,10 @@ fn test_battery_flag() {
#[cfg_attr(feature = "gpu", ignore)]
fn test_gpu_flag() {
btm_command()
- .arg("--enable_gpu_memory")
+ .arg("--enable_gpu")
.assert()
.failure()
.stderr(predicate::str::contains(
- "unexpected argument '--enable_gpu_memory' found",
+ "unexpected argument '--enable_gpu' found",
));
}