Skip to content

Commit

Permalink
Wrong check for VN and vrf delete in test case.
Browse files Browse the repository at this point in the history
Change-Id: I5a87bfdb1c367e3ba9b585a4ebecc078508261b4
Closes-bug: 1456050
  • Loading branch information
manishsing committed May 18, 2015
1 parent 6c7edcc commit 944a79b
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 944a79b

Please sign in to comment.