Skip to content

Commit 9500ebb

Browse files
committed
Debug
1 parent 225ac51 commit 9500ebb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/test_encoders.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,10 @@ def validate_frames_properties(*, actual: Path, expected: Path):
7979
for frame_index, (d_actual, d_expected) in enumerate(
8080
zip(frames_actual, frames_expected)
8181
):
82-
assert all(required_prop in d_expected for required_prop in required_props)
82+
# assert all(required_prop in d_expected for required_prop in required_props)
83+
for prop in required_props:
84+
assert prop in d_expected, f"{prop} not in {d_expected.keys()}"
85+
8386
for prop in d_expected:
8487
if prop == "pkt_pos":
8588
# pkt_pos is the position of the packet *in bytes* in its

0 commit comments

Comments
 (0)