Missed a few places where I didn't delete the obsolete (commented out) version of the breakpoint creation.

llvm-svn: 164436
diff --git a/lldb/test/lang/objc/foundation/TestObjCMethods.py b/lldb/test/lang/objc/foundation/TestObjCMethods.py
index 9a4d26b..0896fc4 100644
--- a/lldb/test/lang/objc/foundation/TestObjCMethods.py
+++ b/lldb/test/lang/objc/foundation/TestObjCMethods.py
@@ -64,24 +64,16 @@
         # Stop at +[NSString stringWithFormat:].
         break_results = lldbutil.run_break_set_command(self, "_regexp-break +[NSString stringWithFormat:]")
         lldbutil.check_breakpoint_result (self, break_results, symbol_name='+[NSString stringWithFormat:]', num_locations=1)
-#        self.expect("_regexp-break +[NSString stringWithFormat:]", BREAKPOINT_CREATED,
-#            substrs = ["Breakpoint created: 1: name = '+[NSString stringWithFormat:]', locations = 1"])
 
         # Stop at -[MyString initWithNSString:].
         lldbutil.run_break_set_by_symbol (self, '-[MyString initWithNSString:]', num_expected_locations=1, sym_exact=True)
-#        self.expect("breakpoint set -n '-[MyString initWithNSString:]'", BREAKPOINT_CREATED,
-#            startstr = "Breakpoint created: 2: name = '-[MyString initWithNSString:]', locations = 1")
 
         # Stop at the "description" selector.
         lldbutil.run_break_set_by_selector (self, 'description', num_expected_locations=1)
-#        self.expect("breakpoint set -S description", BREAKPOINT_CREATED,
-#            startstr = "Breakpoint created: 3: name = 'description', locations = 1")
 
         # Stop at -[NSAutoreleasePool release].
         break_results = lldbutil.run_break_set_command(self, "_regexp-break -[NSAutoreleasePool release]")
         lldbutil.check_breakpoint_result (self, break_results, symbol_name='-[NSAutoreleasePool release]', num_locations=1)
-#        self.expect("_regexp-break -[NSAutoreleasePool release]", BREAKPOINT_CREATED,
-#            substrs = ["Breakpoint created: 4: name = '-[NSAutoreleasePool release]', locations = 1"])
 
         self.runCmd("run", RUN_SUCCEEDED)
 
@@ -204,10 +196,7 @@
 
         self.runCmd("breakpoint delete 1")
         lldbutil.run_break_set_by_file_and_line (self, "main.m", self.line, num_expected_locations=1, loc_exact=True)
-#        self.expect("breakpoint set -f main.m -l %d" % self.line,
-#                    BREAKPOINT_CREATED,
-#            startstr = "Breakpoint created: 2: file ='main.m', line = %d, locations = 1" %
-#                        self.line)
+
         self.runCmd("process continue")
 
         # rdar://problem/8542091