diff options
author | Adam Stokes <adam.stokes@ubuntu.com> | 2013-04-10 16:16:49 -0400 |
---|---|---|
committer | Adam Stokes <adam.stokes@ubuntu.com> | 2013-04-11 21:19:24 -0400 |
commit | a8040ad63832a39b1fa88864efefddf435a5e100 (patch) | |
tree | d072c5634eb844e2596e4384a2ba600255526bbc | |
parent | 1baf743054087363f37d5fcbdf4209a67a8edcd9 (diff) | |
download | sos-a8040ad63832a39b1fa88864efefddf435a5e100.tar.gz |
Fix test for shell_output
- ENV['PATH'] is blank when running this test so we can not rely on
cmd_env['PATH']. I dont know if PATH is supposed to be blank in this setup or
not so we hardcode in a python executable.
Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
-rwxr-xr-x | tests/test_exe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_exe.py b/tests/test_exe.py index f35d93f0..09b2813e 100755 --- a/tests/test_exe.py +++ b/tests/test_exe.py @@ -1,2 +1,2 @@ -#!/usr/bin/env python +#!/usr/bin/python print "executed" |