Skip to content

Commit 27ab2b3

Browse files
author
Siva Chandra
committedMay 27, 2015
[TestDataFormatterUnordered] Fix a few typos in the test.
Summary: The typos were exposed by http://reviews.llvm.org/D9948. Test Plan: dotest.py -p TestDataFormatterUnordered Reviewers: vharron, clayborg Reviewed By: clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D10071 llvm-svn: 238361
1 parent aa8b1cb commit 27ab2b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def setUp(self):
3131
TestBase.setUp(self)
3232

3333
def look_for_content_and_continue(self,var_name,substrs):
34-
self.expect( ("frame variable %s" % var_name), substrs )
34+
self.expect( ("frame variable %s" % var_name), substrs=substrs)
3535
self.runCmd("continue")
3636

3737
def data_formatter_commands(self):
@@ -61,7 +61,7 @@ def cleanup():
6161

6262
self.expect('image list', substrs = self.getLibcPlusPlusLibs())
6363

64-
self.look_for_content_and_continue("map",['size=5 {,''hello','world','this','is','me'])
64+
self.look_for_content_and_continue("map",['size=5 {', 'hello','world','this','is','me'])
6565
self.look_for_content_and_continue("mmap",['size=6 {','first = 3','second = "this"','first = 2','second = "hello"'])
6666
self.look_for_content_and_continue("iset",['size=5 {','[0] = 5','[2] = 3','[3] = 2'])
6767
self.look_for_content_and_continue("sset",['size=5 {','[0] = "is"','[1] = "world"','[4] = "hello"'])

0 commit comments

Comments
 (0)