From d5b2f3c7e157ddbc89fc3873aed0e622bd8ab400 Mon Sep 17 00:00:00 2001 From: Fuad Ismail Date: Sat, 14 Dec 2024 22:27:54 +0700 Subject: [PATCH] tests/dmesg: remove enclosing quotes surrounding since and until option arguments. --- tests/by-util/test_dmesg.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/by-util/test_dmesg.rs b/tests/by-util/test_dmesg.rs index cc7d930..2debb8a 100644 --- a/tests/by-util/test_dmesg.rs +++ b/tests/by-util/test_dmesg.rs @@ -170,8 +170,8 @@ fn test_since_until() { new_ucmd!() .arg("--kmsg-file") .arg("kmsg.input") - .arg("--since=\"2024-11-19 17:47:32 +0700\"") - .arg("--until='2024-11-19 18:55:52 +0700'") + .arg("--since=2024-11-19 17:47:32 +0700") + .arg("--until=2024-11-19 18:55:52 +0700") .succeeds() .no_stderr() .stdout_is_templated_fixture("test_since_until.expected", &[("\r\n", "\n")]);