From 9d015d87eae22994c6f3f5f341dbaa42251d2f20 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 c27ce3cf13fb..0346b2b8c60f 100644 --- a/lib/galaxy/objectstore/__init__.py +++ b/lib/galaxy/objectstore/__init__.py @@ -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)