From e4cbb382abafd3891faef17c98bc9ed9259a5b28 Mon Sep 17 00:00:00 2001 From: Darko Poljak Date: Tue, 5 Apr 2016 20:23:13 +0200 Subject: [PATCH] PATH resolution for true/false. --- cdist/test/exec/local.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cdist/test/exec/local.py b/cdist/test/exec/local.py index 6c201e91..12a0d47b 100644 --- a/cdist/test/exec/local.py +++ b/cdist/test/exec/local.py @@ -36,8 +36,8 @@ my_dir = op.abspath(op.dirname(__file__)) fixtures = op.join(my_dir, 'fixtures') conf_dir = op.join(fixtures, "conf") -bin_true = "/usr/bin/true" -bin_false = "/usr/bin/false" +bin_true = "true" +bin_false = "false" class LocalTestCase(test.CdistTestCase):