X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fframework.py;h=8f9a45b6c3a4ae03cc2c574abf116cd81a093633;hb=7b8b4652693a87233c9aea313959a9cede3df0f4;hp=cd39e1b311c6674d40e0ec7db0510fe075d6e81b;hpb=d826a602696eb337dcce191d7d24ae1869e81ec2;p=vpp.git diff --git a/test/framework.py b/test/framework.py index cd39e1b311c..8f9a45b6c3a 100644 --- a/test/framework.py +++ b/test/framework.py @@ -1002,7 +1002,7 @@ class VppTestCase(CPUInterface, unittest.TestCase): @classmethod def pg_start(cls, trace=True): """Enable the PG, wait till it is done, then clean up""" - for (intf, worker) in cls._old_pcaps: + for intf, worker in cls._old_pcaps: intf.handle_old_pcap_file(intf.get_in_path(worker), intf.in_history_counter) cls._old_pcaps = [] if trace: @@ -1435,7 +1435,6 @@ class VppTestCase(CPUInterface, unittest.TestCase): @classmethod def sleep(cls, timeout, remark=None): - # /* Allow sleep(0) to maintain win32 semantics, and as decreed # * by Guido, only the main thread can be interrupted. # */