[Lldb-commits] [lldb] r113906 - /lldb/trunk/test/class_types/TestClassTypes.py

Johnny Chen johnny.chen at apple.com
Tue Sep 14 17:02:30 PDT 2010


Author: johnny
Date: Tue Sep 14 19:02:30 2010
New Revision: 113906

URL: http://llvm.org/viewvc/llvm-project?rev=113906&view=rev
Log:
Fixed typo in the doc strings.

Modified:
    lldb/trunk/test/class_types/TestClassTypes.py

Modified: lldb/trunk/test/class_types/TestClassTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/class_types/TestClassTypes.py?rev=113906&r1=113905&r2=113906&view=diff
==============================================================================
--- lldb/trunk/test/class_types/TestClassTypes.py (original)
+++ lldb/trunk/test/class_types/TestClassTypes.py Tue Sep 14 19:02:30 2010
@@ -37,13 +37,13 @@
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @unittest2.expectedFailure
     def test_with_dsym_and_expr_parser(self):
-        """Test 'frame variable this' aand 'expr this' when stopped inside a constructor."""
+        """Test 'frame variable this' and 'expr this' when stopped inside a constructor."""
         self.buildDsym()
         self.class_types_expr_parser()
 
     @unittest2.expectedFailure
     def test_with_dwarf_and_expr_parser(self):
-        """Test 'frame variable this' aand 'expr this' when stopped inside a constructor."""
+        """Test 'frame variable this' and 'expr this' when stopped inside a constructor."""
         self.buildDwarf()
         self.class_types_expr_parser()
 
@@ -104,7 +104,7 @@
         self.assertTrue(breakpoint.GetHitCount() == 1)
 
     def class_types_expr_parser(self):
-        """Test 'frame variable this' aand 'expr this' when stopped inside a constructor."""
+        """Test 'frame variable this' and 'expr this' when stopped inside a constructor."""
         exe = os.path.join(os.getcwd(), "a.out")
         self.runCmd("file " + exe, CURRENT_EXECUTABLE_SET)
 





More information about the lldb-commits mailing list