aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/test/test_llmanifest.py
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/test/test_llmanifest.py')
-rw-r--r--linden/indra/test/test_llmanifest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/test/test_llmanifest.py b/linden/indra/test/test_llmanifest.py
index b20b6c1..f503cbe 100644
--- a/linden/indra/test/test_llmanifest.py
+++ b/linden/indra/test/test_llmanifest.py
@@ -5,6 +5,7 @@
5# 5#
6# Copyright (c) 2006-2007, Linden Research, Inc. 6# Copyright (c) 2006-2007, Linden Research, Inc.
7# 7#
8# Second Life Viewer Source Code
8# The source code in this file ("Source Code") is provided by Linden Lab 9# The source code in this file ("Source Code") is provided by Linden Lab
9# to you under the terms of the GNU General Public License, version 2.0 10# to you under the terms of the GNU General Public License, version 2.0
10# ("GPL"), unless you have obtained a separate licensing agreement 11# ("GPL"), unless you have obtained a separate licensing agreement
@@ -106,7 +107,7 @@ class TestLLManifest(unittest.TestCase):
106 def testruncommand(self): 107 def testruncommand(self):
107 self.assertEqual("Hello\n", self.m.run_command("echo Hello")) 108 self.assertEqual("Hello\n", self.m.run_command("echo Hello"))
108 def tmp_test(): 109 def tmp_test():
109 self.m.run_command("fff_garbage") 110 self.m.run_command("test_command_that_should_not_be_found")
110 self.assertRaises(RuntimeError, tmp_test) 111 self.assertRaises(RuntimeError, tmp_test)
111 112
112 def testpathof(self): 113 def testpathof(self):