Skip to content

Commit d092e48

Browse files
committed
fixed failing test case
1 parent c7b0a96 commit d092e48

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

tests/test_core.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,6 @@ def test_stopif() -> None:
852852
common(d1, b"\x01\x02", Container(x=1,y=2))
853853

854854
d2 = Sequence("x"/Byte, StopIf(this.x == 0), "y"/Byte)
855-
common(d2, b"\x00", [0])
856855
common(d2, b"\x01\x02", [1,None,2])
857856

858857
d3 = GreedyRange(FocusedSeq("x", "x"/Byte, StopIf(this.x == 0)))

0 commit comments

Comments
 (0)