diff options
Diffstat (limited to 'indra/test/test_llmanifest.py')
-rw-r--r-- | indra/test/test_llmanifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/test/test_llmanifest.py b/indra/test/test_llmanifest.py index cc464237a2..f4fc2820eb 100644 --- a/indra/test/test_llmanifest.py +++ b/indra/test/test_llmanifest.py @@ -87,7 +87,7 @@ class TestLLManifest(unittest.TestCase): def testruncommand(self): self.assertEqual("Hello\n", self.m.run_command("echo Hello")) def tmp_test(): - self.m.run_command("fff_garbage") + self.m.run_command("test_command_that_should_not_be_found") self.assertRaises(RuntimeError, tmp_test) def testpathof(self): |