Change the test case test_set_prompt() to no longer require quotes around lldb2 in:

# Set prompt to 'lldb2'.
   self.runCmd("settings set prompt lldb2")

llvm-svn: 122272
This commit is contained in:
Johnny Chen 2010-12-20 21:29:34 +00:00
parent 6fee7c2895
commit 622220b66d
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class SettingsCommandTestCase(TestBase):
"""Test that 'set prompt' actually changes the prompt."""
# Set prompt to 'lldb2'.
self.runCmd("settings set prompt 'lldb2'")
self.runCmd("settings set prompt lldb2")
# Immediately test the setting.
self.expect("settings show prompt", SETTING_MSG("prompt"),