Skip to content

Commit

Permalink
Fix odd exception I see on test?
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Mar 21, 2024
1 parent 429c63e commit 9d015d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/objectstore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -995,7 +995,7 @@ def _get_concrete_store_badges(self, obj) -> List[BadgeDict]:
return self._call_method("_get_concrete_store_badges", obj, [], False)

def _is_private(self, obj):
return self._call_method("_is_private", obj, ObjectNotFound, True)
return self._call_method("_is_private", obj, False, False)

def _get_store_by(self, obj):
return self._call_method("_get_store_by", obj, None, False)
Expand Down

0 comments on commit 9d015d8

Please sign in to comment.