From: GERALD NICOLAS Date: Wed, 15 Sep 2021 09:44:43 +0000 (+0200) Subject: Pour le test X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=48b24fbf598f5d56d90d8a572584507adb28522e;p=modules%2Fshaper.git Pour le test --- diff --git a/src/PythonAddons/Test/TestpipeNetwork.py b/src/PythonAddons/Test/TestpipeNetwork.py index 910ffea75..90a82cc04 100755 --- a/src/PythonAddons/Test/TestpipeNetwork.py +++ b/src/PythonAddons/Test/TestpipeNetwork.py @@ -47,6 +47,6 @@ aFile = anImportFeature.string(aFieldName) aFile.setValue(theFile) aSession.finishOperation() -assert(aPart.size("Construction") == 35), "Right number of construction: {}".format(aPart.size("Construction")) +assert(aPart.size("Construction") == 46), "Right number of construction: {}".format(aPart.size("Construction")) assert(aPart.size("Folders") == 1), "Right number of folders: {}".format(aPart.size("Folders")) diff --git a/src/PythonAddons/macros/pipeNetwork/feature.py b/src/PythonAddons/macros/pipeNetwork/feature.py index 36f73c8a1..5f9584030 100755 --- a/src/PythonAddons/macros/pipeNetwork/feature.py +++ b/src/PythonAddons/macros/pipeNetwork/feature.py @@ -219,7 +219,7 @@ Sorties : """ modif = False nb_points = len(l_noeuds) - printverbose ("Analyse de {}".format(l_noeuds), verbose=self._verbose_max or True) + printverbose ("Analyse de {}".format(l_noeuds), verbose=self._verbose_max) #print ("nb_points = {}".format(nb_points)) indice = 0 @@ -762,7 +762,7 @@ Il est nommé conformément au noeud d'application. Cela n'a qu'un intérêt gra # B.2. Gestion des points alignés - self.print_info (self._verbose_max or True, "avant gestion des points alignés") + self.print_info (self._verbose_max, "avant gestion des points alignés") self.correctConnectivity () @@ -770,7 +770,7 @@ Il est nommé conformément au noeud d'application. Cela n'a qu'un intérêt gra for key, value in self.connectivities.items(): self.infoPoints[value['chainage'][-1]]["isEnd"] = True - self.print_info (self._verbose_max or True, "avant les création de points, etc.") + self.print_info (self._verbose_max, "avant les création de points, etc.") # B.4. Creation des points self.createPoints(part) @@ -790,7 +790,7 @@ Il est nommé conformément au noeud d'application. Cela n'a qu'un intérêt gra # B.9. Création des sketchs pour le pipeNetwork self.createSketches(part) - self.print_info (self._verbose_max or True, "après la création des sketchs") + self.print_info (self._verbose_max, "après la création des sketchs") # B.10. Création des pipes self.createPipes(part, nameRes)