From 4e94474a0fe118a4bd774c9cd35b44fec2a467ac Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Thu, 19 Mar 2026 15:43:51 -0700 Subject: [PATCH] finished --- aerospike_helpers/expressions/base.py | 2 +- test/new_tests/test_path_expressions.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aerospike_helpers/expressions/base.py b/aerospike_helpers/expressions/base.py index e7a4dddd87..85870103f0 100644 --- a/aerospike_helpers/expressions/base.py +++ b/aerospike_helpers/expressions/base.py @@ -1132,7 +1132,7 @@ class LoopVarHLL(LoopVar): _op = aerospike._AS_EXP_LOOPVAR_HLL -class ResultRemove(_BaseExpr): +class RemoveResult(_BaseExpr): """ Indicates entry deletion for :py:class:`ModifyByPath`. """ diff --git a/test/new_tests/test_path_expressions.py b/test/new_tests/test_path_expressions.py index 9220f4dfcd..8a7d7e2fd0 100644 --- a/test/new_tests/test_path_expressions.py +++ b/test/new_tests/test_path_expressions.py @@ -5,7 +5,7 @@ from aerospike_helpers.operations import hll_operations as hll_ops from aerospike_helpers.operations import map_operations from aerospike_helpers.expressions.resources import ResultType -from aerospike_helpers.expressions.base import GE, Eq, LoopVarStr, LoopVarFloat, LoopVarInt, LoopVarMap, LoopVarList, ModifyByPath, SelectByPath, MapBin, LoopVarBool, LoopVarBlob, ResultRemove, LoopVarGeoJson, LoopVarNil, CmpGeo, LoopVarHLL, HLLBin +from aerospike_helpers.expressions.base import GE, Eq, LoopVarStr, LoopVarFloat, LoopVarInt, LoopVarMap, LoopVarList, ModifyByPath, SelectByPath, MapBin, LoopVarBool, LoopVarBlob, RemoveResult, LoopVarGeoJson, LoopVarNil, CmpGeo, LoopVarHLL, HLLBin from aerospike_helpers.expressions.map import MapGetByKey, MapPut from aerospike_helpers.expressions.list import ListSize from aerospike_helpers.expressions.arithmetic import Sub @@ -567,7 +567,7 @@ def test_expr_result_remove(self): cdt_ctx.cdt_ctx_all_children(), cdt_ctx.cdt_ctx_all_children() ], - expr=ResultRemove().compile(), + expr=RemoveResult().compile(), flags=aerospike.EXP_PATH_MODIFY_DEFAULT ) ]