Skip to content

Commit

Permalink
fix the failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon committed May 2, 2024
1 parent 002964c commit b0e7232
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion projectroles/tests/test_templatetags.py
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ def test_get_sidebar_links_project_detail_view(self):
},
{
'name': 'project-update',
'url': f'/project/project/update/{self.project.sodar_uuid}',
'url': f'/project/update/{self.project.sodar_uuid}',
'label': 'Update Project',
'icon': 'mdi:lead-pencil',
'active': False,
Expand Down
4 changes: 2 additions & 2 deletions projectroles/tests/test_views_ajax.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ def test_get(self):
},
{
'name': 'project-update',
'url': f'/project/project/update/{self.project.sodar_uuid}',
'url': f'/project/update/{self.project.sodar_uuid}',
'label': 'Update Project',
'icon': 'mdi:lead-pencil',
'active': False,
Expand Down Expand Up @@ -603,7 +603,7 @@ def test_get_app_links(self):
},
{
'name': 'project-update',
'url': f'/project/project/update/{self.project.sodar_uuid}',
'url': f'/project/update/{self.project.sodar_uuid}',
'label': 'Update Project',
'icon': 'mdi:lead-pencil',
'active': False,
Expand Down

0 comments on commit b0e7232

Please sign in to comment.