LLDB command "set term-width 0" needs to be changed to "settings set term-width 0"
after the recent checkin.

llvm-svn: 113206
diff --git a/lldb/test/help/TestHelp.py b/lldb/test/help/TestHelp.py
index 8f4f856..49d857a 100644
--- a/lldb/test/help/TestHelp.py
+++ b/lldb/test/help/TestHelp.py
@@ -19,8 +19,8 @@
             startstr = 'The following is a list of built-in, permanent debugger commands')
 
     def test_help_should_not_hang_emacsshell(self):
-        """Command 'set term-width 0' should not hang the help command."""
-        self.runCmd("set term-width 0")
+        """Command 'settings set term-width 0' should not hang the help command."""
+        self.runCmd("settings set term-width 0")
         self.expect("help",
             startstr = 'The following is a list of built-in, permanent debugger commands')