From beded852d7e1494abd23de191ba7ae2a5a6b81b0 Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Fri, 1 Mar 2019 10:35:55 -0800 Subject: Tests: Trivial fox use of 'is'. 'is' evaluates diffently depending on the value. >>> x=-10 >>> x is -10 False >>> x=10 >>> x is 10 True >>> Change-Id: If72ec7c47e3e95180a4d08a773984253c80154d6 Signed-off-by: Paul Vinciguerra --- test/vpp_neighbor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/vpp_neighbor.py') diff --git a/test/vpp_neighbor.py b/test/vpp_neighbor.py index 3099a25e692..95bcc0d6057 100644 --- a/test/vpp_neighbor.py +++ b/test/vpp_neighbor.py @@ -17,7 +17,7 @@ def find_nbr(test, sw_if_index, nbr_addr, is_static=0, mac=None): ip_addr = ip_address(text_type(nbr_addr)) e = VppEnum.vl_api_ip_neighbor_flags_t nbrs = test.vapi.ip_neighbor_dump(sw_if_index, - is_ipv6=(6 is ip_addr.version)) + is_ipv6=(6 == ip_addr.version)) for n in nbrs: if ip_addr == n.neighbor.ip_address and \ -- cgit 1.2.3-korg