Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiagiupponi committed Oct 22, 2024
1 parent 7af997a commit b273faa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM geonode/geonode-base:latest-ubuntu-22.04
RUN rm -rf /usr/src/geonode
RUN git clone https://github.com/GeoNode/geonode.git /usr/src/geonode
RUN cd /usr/src/geonode && git fetch --all && git checkout master && cd -
RUN cd /usr/src/geonode && git fetch --all && git checkout 4.4.x && cd -
RUN mkdir -p /usr/src/importer

RUN cd ..
Expand Down
2 changes: 1 addition & 1 deletion importer/handlers/tiles3d/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_extract_params_from_data(self):
action="copy",
)

self.assertEqual(actual, {"title": "title_of_the_cloned_resource"})
self.assertEqual(actual, {'store_spatial_file': True, 'title': 'title_of_the_cloned_resource'})

def test_is_valid_should_raise_exception_if_the_3dtiles_is_invalid(self):
data = {
Expand Down

0 comments on commit b273faa

Please sign in to comment.