diff --git a/src/vnsw/agent/ovs_tor_agent/ovsdb_client/test/test_ovs_multicast_local.cc b/src/vnsw/agent/ovs_tor_agent/ovsdb_client/test/test_ovs_multicast_local.cc index 59f7143c4d5..0c3409384dd 100644 --- a/src/vnsw/agent/ovs_tor_agent/ovsdb_client/test/test_ovs_multicast_local.cc +++ b/src/vnsw/agent/ovs_tor_agent/ovsdb_client/test/test_ovs_multicast_local.cc @@ -173,8 +173,8 @@ TEST_F(OvsBaseTest, MulticastLocal_add_mcroute_without_vrf_vn_link_present) { Find(MakeUuid(1)) == NULL)); VrfDelReq("vrf1"); VnDelReq(1); - WAIT_FOR(1000, 10000, (VrfGet("vrf1", true) != NULL)); - WAIT_FOR(1000, 10000, (VnGet(1) != NULL)); + WAIT_FOR(1000, 10000, (VrfGet("vrf1", true) == NULL)); + WAIT_FOR(1000, 10000, (VnGet(1) == NULL)); } int main(int argc, char *argv[]) {