Skip to content

Commit

Permalink
[Fixes #12368] Fix sld serializer
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiagiupponi committed Oct 15, 2024
1 parent e9ca690 commit d5210a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion geonode/upload/handlers/sld/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_can_successfully_import_metadata_file(self):
step="step",
input_params={
"files": self.valid_files,
"dataset_title": self.layer.alternate,
"resource_pk": self.layer.pk,
"skip_existing_layer": True,
"handler_module_path": str(self.handler),
},
Expand Down
2 changes: 1 addition & 1 deletion geonode/upload/handlers/xml/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def test_can_successfully_import_metadata_file(self):
step="step",
input_params={
"files": self.valid_files,
"dataset_title": self.layer.alternate,
"resource_pk": self.layer.pk,
"skip_existing_layer": True,
"handler_module_path": str(self.handler),
},
Expand Down
2 changes: 1 addition & 1 deletion geonode/upload/tests/unit/test_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ def test_import_metadata_should_work_as_expected(self):
step="step",
input_params={
"files": valid_files,
"dataset_title": layer.alternate,
"resource_pk": layer.pk,
"skip_existing_layer": True,
"handler_module_path": str(handler),
},
Expand Down

0 comments on commit d5210a4

Please sign in to comment.