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=92b3bdbf8f32fcc9b4d34511b520191fe85c4d28;p=ceph.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 9d5bd458254c..433dc916d129 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)