PyUnit/UnittestDialog.py

changeset 3020
542e97d4ecb3
parent 2992
dbdf27746da5
child 3030
4a0a82ddd9d2
--- a/PyUnit/UnittestDialog.py	Mon Oct 14 18:26:25 2013 +0200
+++ b/PyUnit/UnittestDialog.py	Mon Oct 14 19:30:36 2013 +0200
@@ -254,9 +254,10 @@
         
         prog = self.testsuiteComboBox.currentText()
         if not prog:
-            E5MessageBox.critical(self,
-                    self.trUtf8("Unittest"),
-                    self.trUtf8("You must enter a test suite file."))
+            E5MessageBox.critical(
+                self,
+                self.trUtf8("Unittest"),
+                self.trUtf8("You must enter a test suite file."))
             return
         
         # prepend the selected file to the testsuite combobox
@@ -328,13 +329,14 @@
                         module)
             except:
                 exc_type, exc_value, exc_tb = sys.exc_info()
-                E5MessageBox.critical(self,
-                        self.trUtf8("Unittest"),
-                        self.trUtf8(
-                            "<p>Unable to run test <b>{0}</b>.<br>"
-                            "{1}<br>{2}</p>")
-                            .format(self.testName, str(exc_type),
-                                    str(exc_value)))
+                E5MessageBox.critical(
+                    self,
+                    self.trUtf8("Unittest"),
+                    self.trUtf8(
+                        "<p>Unable to run test <b>{0}</b>.<br>"
+                        "{1}<br>{2}</p>")
+                        .format(self.testName, str(exc_type),
+                                str(exc_value)))
                 return
                 
             # now set up the coverage stuff
@@ -386,11 +388,12 @@
         @param exc_value value of exception occured during preparation (string)
         """
         if nrTests == 0:
-            E5MessageBox.critical(self,
-                    self.trUtf8("Unittest"),
-                    self.trUtf8(
-                        "<p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p>")
-                        .format(self.testName, exc_type, exc_value))
+            E5MessageBox.critical(
+                self,
+                self.trUtf8("Unittest"),
+                self.trUtf8(
+                    "<p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p>")
+                    .format(self.testName, exc_type, exc_value))
             return
             
         self.totalTests = nrTests

eric ide

mercurial