mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-10 09:21:44 -04:00
benchmark cpu: remove KDF assertions from tests
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
fe5e012481
commit
fea52efd44
1 changed files with 1 additions and 2 deletions
|
|
@ -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]:
|
||||
|
|
|
|||
Loading…
Reference in a new issue