mirror of
https://github.com/beetbox/beets.git
synced 2026-02-09 08:52:30 +01:00
Fixed linting, broked dow assertion in test
This commit is contained in:
parent
3694b82bce
commit
2063631ff7
1 changed files with 2 additions and 1 deletions
|
|
@ -90,7 +90,8 @@ def test_single_item(capsys, library):
|
|||
assert avg_bitrate_lines, "Expected an 'Avg bitrate:' line in output"
|
||||
avg_line = avg_bitrate_lines[0]
|
||||
assert "kbps" in avg_line
|
||||
assert "(" in avg_line and ")" in avg_line # Quality label
|
||||
assert "(" in avg_line
|
||||
assert ")" in avg_line # Quality label
|
||||
|
||||
# --- Primary format ---
|
||||
primary_format_lines = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue