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_ip_route.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/vpp_ip_route.py') diff --git a/test/vpp_ip_route.py b/test/vpp_ip_route.py index 6e52481782f..bb421c0d171 100644 --- a/test/vpp_ip_route.py +++ b/test/vpp_ip_route.py @@ -36,7 +36,7 @@ class MplsLspMode: def ip_to_dpo_proto(addr): - if addr.version is 6: + if addr.version == 6: return DpoProto.DPO_PROTO_IP6 else: return DpoProto.DPO_PROTO_IP4 -- cgit 1.2.3-korg