Skip to content

Commit

Permalink
Removed sleep intervals in the test
Browse files Browse the repository at this point in the history
Signed-off-by: Vivek Reddy Karri <vkarri@nvidia.com>
  • Loading branch information
vivekrnv committed Sep 7, 2022
1 parent a35480b commit e9c75e1
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/port_dpb.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,8 @@ def breakin(self, dvs, port_names):

for cp in child_ports:
assert(cp.exists_in_config_db() == False)
time.sleep(1)
for cp in child_ports:
assert(cp.exists_in_app_db() == False)
time.sleep(1)
for cp in child_ports:
assert(cp.exists_in_asic_db() == False)
#print "Verified child ports are deleted from all DBs"
Expand Down Expand Up @@ -277,11 +275,9 @@ def create_child_ports(self, dvs, p, num_child_ports):
assert(cp.exists_in_config_db() == True)
cp.verify_config_db()
#print "Config DB verification passed"
time.sleep(1)
for cp in child_ports:
assert(cp.exists_in_app_db() == True)
cp.verify_app_db()
time.sleep(1)
#print "APP DB verification passed"
for cp in child_ports:
assert(cp.exists_in_asic_db() == True)
Expand Down

0 comments on commit e9c75e1

Please sign in to comment.