Browse Source

Switch to bash for Unicode tests

tags/nilmrun-1.3.2^0
Jim Paris 10 years ago
parent
commit
7f05a0fb62
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/test_nilmrun.py

+ 1
- 1
tests/test_nilmrun.py View File

@@ -381,7 +381,7 @@ class TestClient(object):
client = HTTPClient(baseurl = testurl, post_json = True)
eq_(client.get("process/list"), [])
def verify(cmd, result):
pid = client.post("run/command", { "argv": [ "sh", "-c", cmd ] })
pid = client.post("run/command", { "argv": [ "/bin/bash", "-c", cmd ] })
eq_(client.get("process/list"), [pid])
status = self.wait_end(client, pid)
eq_(result, status["log"])


Loading…
Cancel
Save