From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 6436EA00E6 for ; Fri, 22 Mar 2019 12:18:24 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1E0DB1B5B1; Fri, 22 Mar 2019 12:18:23 +0100 (CET) Received: from mail-wm1-f65.google.com (mail-wm1-f65.google.com [209.85.128.65]) by dpdk.org (Postfix) with ESMTP id B58BA1B5A9 for ; Fri, 22 Mar 2019 12:18:20 +0100 (CET) Received: by mail-wm1-f65.google.com with SMTP id t124so1751337wma.4 for ; Fri, 22 Mar 2019 04:18:20 -0700 (PDT) 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=hhqM17qKw28oQfbqRp6CZGKwM7g/MOJEzHVnjVtcdYs=; b=P5eQdvP2mGBkK0imMJsR+pf+Eb681a0Uu9bFWJs4i4IsNkkR80AdEYTz9vrZCtXmFV +XUl2sdHvEQ2odEWuMahThh5mmLu66N6l4x7oEiyLM8e4drX/sSfekj4tSGNE6i0BTai xtz+DM2d+7lQNpAcDBTjKMUAi6s7JC81odM+R+6uC+yZ6TheSoxWldQLmQmhlTQWV1sC NI7mTVhnjPxHp71GgmT/tGjkSFCGdaYfiZXA9Cfx04idSOruc6/LtpVE5K+hayRL9vha qsu2Fsg0HAz8VAlDq+LV4IH5nn8lNjOqXWpg+pAbPFYasF9hM1fOQMPr+Gp2yzq4hBr0 S2qQ== 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=hhqM17qKw28oQfbqRp6CZGKwM7g/MOJEzHVnjVtcdYs=; b=lQcXdMkk8m44hv88iA+fLtM+uL7HAPet28F8IdQq3S2UZfTVBZ2iwcjprLy5G1ktrs 0AUc5PKn5cN4ZZ1lT5gSbXP1shacMzybWUenps5dzOKPNROWf0kQBq5Pf3SxYQjsS2e7 w2PpspTwFbbXOAde5iT4UMk5ugKXuV5NHCazZYZmbLm+VhJ1lryctKShmkvnSRb3ob3y UdvatJKsaz+Aymzt0+FFAQLEXD5hTT4x0yPnYeAejl7eS2mefcK83NJLUAyILJQsBUux rYy6GlS9mJr6YRtGXXCnXurtC/L/CZeWXOvJz5dbdXpTbYavw1yxyUHTVX7eS+MU63gQ 1g0A== X-Gm-Message-State: APjAAAUaYnXEmMu6JmQN8rtkMh24L7ZEEc+6gjFkWZksyut+uu5u2yL2 ZjLrH6D0EkTYkWZBCjSEIKGd3C4nH1MXzw== X-Google-Smtp-Source: APXvYqzp8jjo1OMXwxrj76ycfe/tGt1vxMgUQ57VAhCBq7uCjk7kFXzaITKwFpVL5fcJr/7BCG9TGQ== X-Received: by 2002:a1c:f510:: with SMTP id t16mr2564691wmh.105.1553253500151; Fri, 22 Mar 2019 04:18:20 -0700 (PDT) Received: from localhost.localdomain (bzq-79-180-101-57.red.bezeqint.net. [79.180.101.57]) by smtp.gmail.com with ESMTPSA id c15sm5549504wrv.69.2019.03.22.04.18.19 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 22 Mar 2019 04:18:19 -0700 (PDT) From: Rami Rosen To: dts@dpdk.org Cc: Rami Rosen Date: Fri, 22 Mar 2019 13:17:55 +0200 Message-Id: <20190322111755.12671-1-ramirose@gmail.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH] tests/dynamic_queue: fix a typo 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: , Errors-To: dts-bounces@dpdk.org Sender: "dts" This patch fixes a trivial typo in dynamic queue test module. forville->fortville Signed-off-by: Rami Rosen --- 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 34a9363..8e3fdb9 100644 --- a/tests/TestSuite_dynamic_queue.py +++ b/tests/TestSuite_dynamic_queue.py @@ -27,7 +27,7 @@ class TestDynamicQueue(TestCase): self.dut_testpmd = PmdOutput(self.dut) def set_up(self): - # Because of forville spirit limitation,can't use 2 ports for testing + # Because of fortville spirit limitation,can't use 2 ports for testing if (self.nic in ["fortville_spirit"]): self.dut_testpmd.start_testpmd( "Default", "--port-topology=chained --txq=%s --rxq=%s" -- 2.19.2