From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-f66.google.com (mail-wm1-f66.google.com [209.85.128.66]) by dpdk.org (Postfix) with ESMTP id A407C10A3 for ; Sat, 19 Jan 2019 13:40:42 +0100 (CET) Received: by mail-wm1-f66.google.com with SMTP id y8so6844482wmi.4 for ; Sat, 19 Jan 2019 04:40:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=TjmoQKryXeRKvt4cNwcIy9lQ/kpizl3yMUrCNHLLvGs=; b=KOk2Z53rMi+EExdnM7JSKPPWl+81ksf5JmOb1G/rPR0pqE8tk4Xm3zyFejPJ2de9xb GuRVE5zjIEYPLTW2zc4fB9PUPxXEjyAGdI+fYA2qTSFZ6ynVX8tDuB1nGrS90t64t+l0 ESp0ZsTvknjL7b4zgcCOq6Vx7fFEOol5WyFAQTCwqoMKD5O5yP/Mx9zYCGRE8E4qjJlz cOGaJ2OaBBUFnv/c10nDHoL/CKVv+wg+3FuZaZrgtjuVOR5MUjBiI1e32cm3d2vasdDu dyBT3ANFdcYnUbg+V0icGIFnqzfG4PBFCR24cY5np1SayNbyOBveVMGJLV6Ov26lqcSC K8CQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=TjmoQKryXeRKvt4cNwcIy9lQ/kpizl3yMUrCNHLLvGs=; b=MegNj3V5rr6zQvG2QZqQ+eWzSfEMYUKfWIblbbOER/PMl7oXfSJE7uEFng0cEZoIg4 psTFwHiReTsjnHIDJCpbP+zlxWpWwb1aTFTT2Rdcv6g4x+wVvGDPVMAnSE95tfqU+PxA 1CZ6Hka9Fth88aJHobf7Ofa+UiNYv25A1W7DXoJzQX6Yqw7bPfNILbjSRj2K9ci5dGLh k8M2R41uPyY7w6K3aJ9z+sIqSQlokPd7JomRQSZiSgnej5b3OYQRZdgsUY8KJXCnzTBl hJSD0rgThG0q9vhBibhimy7WiMFbNZjqlIVWUK1p5IWTZ53lr5G8Xrui5Z4CQ5T96jAq Ns6Q== X-Gm-Message-State: AJcUukclvSM2o+woSuO9lCQVAQPlhHZp48Iw7Kex2s76gKKrPsb93Yzs rcSFjlHZOnELrR8yEJvtw01UKw7S X-Google-Smtp-Source: ALg8bN5tuUKrHeTwqdaNy/qUYmGX/gV5puVOaXWOqax5LnFL+PzFznduSmgTomvvLjY19uo63hiRFw== X-Received: by 2002:a1c:7706:: with SMTP id t6mr17824308wmi.57.1547901642166; Sat, 19 Jan 2019 04:40:42 -0800 (PST) Received: from localhost.localdomain (bzq-109-66-107-204.red.bezeqint.net. [109.66.107.204]) by smtp.gmail.com with ESMTPSA id i186sm54823888wmd.19.2019.01.19.04.40.41 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sat, 19 Jan 2019 04:40:41 -0800 (PST) From: Rami Rosen To: dts@dpdk.org Cc: Rami Rosen Date: Sat, 19 Jan 2019 14:40:30 +0200 Message-Id: <20190119124030.10568-1-ramirose@gmail.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH] tests/mempool_exthandler: fix typos 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: Sat, 19 Jan 2019 12:40:42 -0000 Signed-off-by: Rami Rosen --- tests/TestSuite_mempool_exthandler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_mempool_exthandler.py b/tests/TestSuite_mempool_exthandler.py index 10fbd1d..ec8ed48 100644 --- a/tests/TestSuite_mempool_exthandler.py +++ b/tests/TestSuite_mempool_exthandler.py @@ -44,7 +44,7 @@ class TestMemExthandler(TestCase): """ Run at the start of each test suite. """ - # only one port is enought for this case + # only one port is enough for this case self.dut_ports = self.dut.get_ports() self.verify(len(self.dut_ports) >= 1, "Not enough ports for " + self.nic) @@ -91,7 +91,7 @@ class TestMemExthandler(TestCase): def verify_mempool_hander(self): """ - Verify all packets recevied and transmitted normally. + Verify that all packets are received and transmitted normally. """ # start l2fwd command_line = "%s -n %d -c %s -- -q 4 -p %s" % \ -- 2.19.2