Skip to content

Commit

Permalink
fix: Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pnu-s committed Apr 17, 2024
1 parent c3f09f8 commit 0e2b9a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exodus/restful_api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def search_strict_handle_details(request, handle):
'creator': app.creator,
'downloads': app.downloads,
'trackers': [t.id for t in report.found_trackers.all()],
'permissions': [p.name for p in app.permission_set.all()]
'permissions': sorted([p.name for p in app.permission_set.all()])
})
except Report.DoesNotExist:
return JsonResponse({}, safe=True)
Expand Down

0 comments on commit 0e2b9a9

Please sign in to comment.