Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2d0fb89d authored by Hansong Zhang's avatar Hansong Zhang Committed by Myles Watson
Browse files

Fix L2CAP/ERM/BV-16-C

Bug: 157380277
Test: cert/run --host
Tag: #gd-refactor
Change-Id: I0bc8132078deba9fc36f853d4e44d9f429b0f2cb
parent 2f4605a9
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -954,8 +954,7 @@ class L2capTest(GdBaseTestClass):
        for i in range(1, tx_window_size):
            cert_channel.send_i_frame(tx_seq=i, req_seq=0, f=Final.NOT_SET, payload=SAMPLE_PACKET)
        assertThat(cert_channel).emits(
            L2capMatchers.SFrame(
                req_seq=tx_window_size, f=Final.NOT_SET, s=SupervisoryFunction.RECEIVER_READY, p=Poll.NOT_SET))
            L2capMatchers.SFrame(req_seq=i + 1, f=Final.NOT_SET, s=SupervisoryFunction.RECEIVER_READY, p=Poll.NOT_SET))

    @metadata(pts_test_id="L2CAP/ERM/BV-18-C", pts_test_name="Receive S-Frame [RR] Final Bit = 1")
    def test_receive_s_frame_rr_final_bit_set(self):