benchmark cpu: remove KDF assertions from tests

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Mrityunjay Raj 2026-05-24 10:07:34 +05:30
parent fe5e012481
commit fea52efd44

View file

@ -53,7 +53,6 @@ def test_benchmark_cpu(archiver, monkeypatch):
assert "Non-cryptographic checksums / hashes" in output
assert "Cryptographic hashes / MACs" in output
assert "Encryption" in output
assert "KDFs" in output
assert "Compression" in output
assert "msgpack" in output
@ -76,7 +75,7 @@ def test_benchmark_cpu_json(archiver, monkeypatch):
for entry in result[category]:
assert "algo_params" in entry
# categories with "count" field
for category in ["kdf", "msgpack"]:
for category in ["msgpack"]:
assert isinstance(result[category], list)
assert len(result[category]) > 0
for entry in result[category]: