From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 6F01D37A4 for ; Thu, 14 Jul 2016 15:17:44 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga103.fm.intel.com with ESMTP; 14 Jul 2016 06:17:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,362,1464678000"; d="scan'208";a="995175246" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by orsmga001.jf.intel.com with ESMTP; 14 Jul 2016 06:17:43 -0700 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id u6EDHfV7003448; Thu, 14 Jul 2016 21:17:41 +0800 Received: from shecgisg003.sh.intel.com (localhost [127.0.0.1]) by shecgisg003.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id u6EDHdY4001326; Thu, 14 Jul 2016 21:17:41 +0800 Received: (from yliu84x@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id u6EDHd3Y001322; Thu, 14 Jul 2016 21:17:39 +0800 From: Marvin Liu To: dts@dpdk.org Cc: Marvin Liu Date: Thu, 14 Jul 2016 21:17:28 +0800 Message-Id: <1468502253-1276-3-git-send-email-yong.liu@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1468502253-1276-1-git-send-email-yong.liu@intel.com> References: <1468502253-1276-1-git-send-email-yong.liu@intel.com> Subject: [dts] [PATCH 2/7] framework tester: fix typo issue 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: Thu, 14 Jul 2016 13:17:44 -0000 Signed-off-by: Marvin Liu diff --git a/framework/tester.py b/framework/tester.py index 2c39ac9..2781376 100644 --- a/framework/tester.py +++ b/framework/tester.py @@ -143,8 +143,8 @@ class Tester(Crb): Return tester local port connect to specified port and specified dut. """ for dut in self.duts: - if dut.crb['My IP'] == dutIP: - return self.dut.ports_map[remotePort] + if dut.crb['My IP'] == dutIp: + return dut.ports_map[remotePort] def get_local_index(self, pci): """ -- 1.9.3