From 48b24fbf598f5d56d90d8a572584507adb28522e Mon Sep 17 00:00:00 2001 From: GERALD NICOLAS Date: Wed, 15 Sep 2021 11:44:43 +0200 Subject: [PATCH] Pour le test --- src/PythonAddons/Test/TestpipeNetwork.py | 2 +- src/PythonAddons/macros/pipeNetwork/feature.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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) -- 2.39.2