PyUnit/UnittestDialog.py

changeset 15
f6ccc31d6e72
parent 13
1af94a91f439
child 34
93367928a93b
--- a/PyUnit/UnittestDialog.py	Sat Jan 02 16:15:57 2010 +0000
+++ b/PyUnit/UnittestDialog.py	Sat Jan 02 17:09:08 2010 +0000
@@ -41,7 +41,7 @@
         
         @param prog filename of the program to open
         @param dbs reference to the debug server object. It is an indication
-                whether we were called from within the eric4 IDE
+                whether we were called from within the eric5 IDE
         @param ui reference to the UI object
         @param parent parent widget of this dialog (QWidget)
         @param name name of this dialog (string)
@@ -93,7 +93,7 @@
         self.rx1 = self.trUtf8("^Failure: ")
         self.rx2 = self.trUtf8("^Error: ")
         
-        # now connect the debug server signals if called from the eric4 IDE
+        # now connect the debug server signals if called from the eric5 IDE
         if self.dbs:
             self.connect(self.dbs, SIGNAL('utPrepared'),
                 self.__UTPrepared)
@@ -227,7 +227,7 @@
         self.testName = os.path.splitext(os.path.basename(prog))[0]
         
         if self.dbs and not self.localCheckBox.isChecked():
-            # we are cooperating with the eric4 IDE
+            # we are cooperating with the eric5 IDE
             project = e4App().getObject("Project")
             if project.isOpen() and project.isProjectSource(prog):
                 mainScript = project.getMainScript(True)
@@ -267,7 +267,7 @@
             # now set up the coverage stuff
             if self.coverageCheckBox.isChecked():
                 if self.dbs:
-                    # we are cooperating with the eric4 IDE
+                    # we are cooperating with the eric5 IDE
                     project = e4App().getObject("Project")
                     if project.isOpen() and project.isProjectSource(prog):
                         mainScript = project.getMainScript(True)
@@ -491,7 +491,7 @@
         
     def __showSource(self):
         """
-        Private slot to show the source of a traceback in an eric4 editor.
+        Private slot to show the source of a traceback in an eric5 editor.
         """
         if not self.dbs:
             return
@@ -592,4 +592,4 @@
             QApplication.exit()
             return True
         
-        return False
+        return False
\ No newline at end of file

eric ide

mercurial