From d092e48a682e2981f9c77cd774a12f65e9305bfd Mon Sep 17 00:00:00 2001 From: Tim Rid <6593626+timrid@users.noreply.github.com> Date: Sat, 3 Apr 2021 21:40:26 +0200 Subject: [PATCH] fixed failing test case --- tests/test_core.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_core.py b/tests/test_core.py index 66d9305..b9ecd0c 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -852,7 +852,6 @@ def test_stopif() -> None: common(d1, b"\x01\x02", Container(x=1,y=2)) d2 = Sequence("x"/Byte, StopIf(this.x == 0), "y"/Byte) - common(d2, b"\x00", [0]) common(d2, b"\x01\x02", [1,None,2]) d3 = GreedyRange(FocusedSeq("x", "x"/Byte, StopIf(this.x == 0)))