From fe1b63d33098e99beed865916e76cc864a575c33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florent=20Thi=C3=A9ry?= <florent.thiery@ubicast.eu> Date: Thu, 1 Jun 2017 12:35:27 +0200 Subject: [PATCH] fix query path, refs #21547 --- tests/test_raid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_raid.py b/tests/test_raid.py index e68e4958..ffce2648 100755 --- a/tests/test_raid.py +++ b/tests/test_raid.py @@ -21,7 +21,7 @@ def print_green(string): print(GREEN + string + DEF) def check_raid(dev): - cmd = 'mdadm -D /dev/%s' % dev + cmd = 'mdadm -D %s' % dev status, output = subprocess.getstatusoutput(cmd) print(output) return status != 0 -- GitLab