make consumption by selection off by default

This commit is contained in:
Tom 2025-03-24 15:30:34 +00:00
parent 06c84fb20e
commit 9beaaa2e10

View File

@ -12,7 +12,7 @@ q = Qube.from_dict(
def test_consumption():
assert q.select({"expver": "0001"}) == Qube.from_dict(
assert q.select({"expver": "0001"}, consume=True) == Qube.from_dict(
{"class=od": {"expver=0001": {"param=1": {}, "param=2": {}}}}
)