Skip to content

Commit

Permalink
tests: Fixed test_BGP_GR_TC_5_1_2_p1 test case
Browse files Browse the repository at this point in the history
In this test case, on interface flap, test was expecting the peer to send
R-bit = True, which is not right. So updated the test to expect R-bit to be false
on interface flap

Signed-off-by: Pooja Jagadeesh Doijode <[email protected]>
  • Loading branch information
Pdoijode committed Jun 4, 2024
1 parent cd9248b commit 0d7c60b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@ def test_BGP_GR_TC_5_1_2_p1(request):
)

result = verify_r_bit(tgen, topo, addr_type, input_dict, dut="r1", peer="r2")
assert result is True, "Testcase {} : Failed \n Error {}".format(
assert result is not True, "Testcase {} : Failed \n Error {}".format(
tc_name, result
)

Expand Down

0 comments on commit 0d7c60b

Please sign in to comment.