@@ -62,7 +62,9 @@ def test_extract_brep_uuids(client, test_id):
6262
6363def test_export_project_route (client , tmp_path ):
6464 route = "/opengeodeweb_back/export_project"
65- snapshot = {"styles" : {"1" : {"visibility" : True , "opacity" : 1.0 , "color" : [0.2 , 0.6 , 0.9 ]}}}
65+ snapshot = {
66+ "styles" : {"1" : {"visibility" : True , "opacity" : 1.0 , "color" : [0.2 , 0.6 , 0.9 ]}}
67+ }
6668 filename = "export_project_test.zip"
6769 response = client .post (route , json = {"snapshot" : snapshot , "filename" : filename })
6870 assert response .status_code == 200
@@ -87,7 +89,9 @@ def test_export_project_route(client, tmp_path):
8789
8890def test_import_project_route (client , tmp_path ):
8991 route = "/opengeodeweb_back/import_project"
90- snapshot = {"styles" : {"1" : {"visibility" : True , "opacity" : 1.0 , "color" : [0.2 , 0.6 , 0.9 ]}}}
92+ snapshot = {
93+ "styles" : {"1" : {"visibility" : True , "opacity" : 1.0 , "color" : [0.2 , 0.6 , 0.9 ]}}
94+ }
9195
9296 data_folder = client .application .config ["DATA_FOLDER_PATH" ]
9397 pre_existing_db_path = os .path .join (data_folder , "1" , "project.db" )
0 commit comments