diff -r 44e15eda6506 -r e8fc383322f7 eric6/PyUnit/UnittestDialog.py --- a/eric6/PyUnit/UnittestDialog.py Tue Jan 05 18:28:31 2021 +0100 +++ b/eric6/PyUnit/UnittestDialog.py Wed Jan 06 13:47:01 2021 +0100 @@ -55,7 +55,7 @@ @param prog filename of the program to open @type str @param dbs reference to the debug server object. It is an indication - whether we were called from within the eric6 IDE. + whether we were called from within the eric IDE. @type DebugServer @param ui reference to the UI object @type UserInterface @@ -165,7 +165,7 @@ self.__failedTests = [] - # now connect the debug server signals if called from the eric6 IDE + # now connect the debug server signals if called from the eric IDE if self.__dbs: self.__dbs.utDiscovered.connect(self.__UTDiscovered) self.__dbs.utPrepared.connect(self.__UTPrepared) @@ -379,7 +379,7 @@ if self.__dbs: venvName = self.venvComboBox.currentText() - # we are cooperating with the eric6 IDE + # we are cooperating with the eric IDE project = e5App().getObject("Project") if self.__forProject: mainScript = project.getMainScript(True) @@ -721,7 +721,7 @@ if self.__dbs: venvName = self.venvComboBox.currentText() - # we are cooperating with the eric6 IDE + # we are cooperating with the eric IDE project = e5App().getObject("Project") if self.__forProject: mainScript = project.getMainScript(True) @@ -1155,7 +1155,7 @@ def __showSource(self): """ - Private slot to show the source of a traceback in an eric6 editor. + Private slot to show the source of a traceback in an eric editor. """ # get the error info tracebackLines = self.dlg.traceback.toPlainText().splitlines()