File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1212s = QgsSettings ()
1313data = s .value ("ORStools/config" )
1414
15+
1516def pytest_sessionstart (session ):
1617 """
1718 Called after the Session object has been created and
Original file line number Diff line number Diff line change @@ -63,6 +63,4 @@ def test_ORStoolsDialog(self):
6363 dlg .line_tool .canvasDoubleClickEvent (map_dclick )
6464
6565 self .assertTrue (dlg .isVisible ())
66- self .assertEqual (
67- dlg .routing_fromline_list .item (0 ).text (), "Point 0: -0.187575, 56.516620"
68- )
66+ self .assertEqual (dlg .routing_fromline_list .item (0 ).text (), "Point 0: -0.187575, 56.516620" )
Original file line number Diff line number Diff line change @@ -195,7 +195,9 @@ def test_export(self):
195195 export = ORSExportAlgo ().create ()
196196 dest_id = export .processAlgorithm (parameters , self .context , self .feedback )
197197 processed_layer = QgsProcessingUtils .mapLayerFromString (dest_id ["OUTPUT" ], self .context )
198- processed_nodes = QgsProcessingUtils .mapLayerFromString (dest_id ["OUTPUT_POINT" ], self .context )
198+ processed_nodes = QgsProcessingUtils .mapLayerFromString (
199+ dest_id ["OUTPUT_POINT" ], self .context
200+ )
199201
200202 self .assertEqual (type (processed_layer ), QgsVectorLayer )
201203 self .assertEqual (type (processed_nodes ), QgsVectorLayer )
You can’t perform that action at this time.
0 commit comments