PATH resolution for true/false.

This commit is contained in:
Darko Poljak 2016-04-05 20:23:13 +02:00
parent 3062421cf5
commit e4cbb382ab
1 changed files with 2 additions and 2 deletions

View File

@ -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):