Skip to content

Commit

Permalink
Merge "Wrong check for VN and vrf delete in test case." into R2.20
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed May 20, 2015
2 parents 77e422d + 944a79b commit f514603
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -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[]) {
Expand Down

0 comments on commit f514603

Please sign in to comment.