From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id C4B914C8A for ; Wed, 24 Oct 2018 07:04:12 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Oct 2018 22:04:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,418,1534834800"; d="scan'208";a="98050596" Received: from unknown (HELO localhost.localdomain.sh.intel.com) ([10.240.176.135]) by fmsmga002.fm.intel.com with ESMTP; 23 Oct 2018 22:04:11 -0700 From: wenjieli To: dts@dpdk.org Cc: wenjieli Date: Wed, 24 Oct 2018 13:07:09 +0800 Message-Id: <1540357629-10322-1-git-send-email-wenjiex.a.li@intel.com> X-Mailer: git-send-email 1.9.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH V1] tests/dynamic_queue: need not import sniff_packets and load_sniff_packets X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Oct 2018 05:04:13 -0000 this test suite doesn’t use sniffer code, “from packet import Packet” is enough; will not import sniff_packets and load_sniff_packets from packet any more. Signed-off-by: wenjieli --- tests/TestSuite_dynamic_queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_dynamic_queue.py b/tests/TestSuite_dynamic_queue.py index 05f1d17..f155686 100644 --- a/tests/TestSuite_dynamic_queue.py +++ b/tests/TestSuite_dynamic_queue.py @@ -6,7 +6,7 @@ import utils from test_case import TestCase from pmd_output import PmdOutput from settings import get_nic_name -from packet import Packet, sniff_packets, load_sniff_packets +from packet import Packet import random test_loop = 3 -- 2.17.2