From: Kushal Deb Date: Sat, 21 Feb 2026 12:33:04 +0000 (+0530) Subject: Fix test_remote_executables X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=273614d8611a0b2c03610213a0b6b84d7b9bfc67;p=ceph-ci.git Fix test_remote_executables update ast.ButOr -> ast.BitOr Signed-off-by: Kushal Deb --- diff --git a/src/pybind/mgr/cephadm/tests/test_remote_executables.py b/src/pybind/mgr/cephadm/tests/test_remote_executables.py index 9d5bd458254..433dc916d12 100644 --- a/src/pybind/mgr/cephadm/tests/test_remote_executables.py +++ b/src/pybind/mgr/cephadm/tests/test_remote_executables.py @@ -114,7 +114,7 @@ def _names(node): or isinstance(node, ast.Pow) or isinstance(node, ast.LShift) or isinstance(node, ast.RShift) - or isinstance(node, ast.ButOr) + or isinstance(node, ast.BitOr) or isinstance(node, ast.BitXor) or isinstance(node, ast.BitAnd) or isinstance(node, ast.MatMult)