From 2d446e27110dbe5e13effd016b2e8498352e1b6f Mon Sep 17 00:00:00 2001 From: John Chilton Date: Thu, 21 Mar 2024 16:10:26 -0400 Subject: [PATCH] Fix odd exception I see on test? --- lib/galaxy/objectstore/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/galaxy/objectstore/__init__.py b/lib/galaxy/objectstore/__init__.py index 6b25071ccad3..a8b796122388 100644 --- a/lib/galaxy/objectstore/__init__.py +++ b/lib/galaxy/objectstore/__init__.py @@ -997,7 +997,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)