Merge remote-tracking branch 'cdist/master'

remotes/origin/feature_files_export
Steven Armstrong 13 years ago
commit fe444eb04d
  1. 4
      test.py

@ -46,11 +46,11 @@ class Exec(unittest.TestCase):
self.shell_true = os.path.join(self.temp_dir, "shell_true")
true_fd = open(self.shell_true, "w")
true_fd.writelines(["#!/bin/sh", "/bin/true"])
true_fd.writelines(["#!/bin/sh\n", "/bin/true"])
true_fd.close()
false_fd = open(self.shell_false, "w")
false_fd.writelines(["#!/bin/sh", "/bin/false"])
false_fd.writelines(["#!/bin/sh\n", "/bin/false"])
false_fd.close()
def tearDown(self):

Loading…
Cancel
Save