From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f65.google.com (mail-wr1-f65.google.com [209.85.221.65]) by dpdk.org (Postfix) with ESMTP id 519191B491 for ; Fri, 4 Jan 2019 13:19:06 +0100 (CET) Received: by mail-wr1-f65.google.com with SMTP id c14so36497893wrr.0 for ; Fri, 04 Jan 2019 04:19:06 -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=qskjNZzrIUnqSVSZWVW+0prk3460ga18o4E+MIOycdM=; b=e1Rxra1rbbkEuTKRUzSHtJAD9NBSwNHK1wow4Sg+eaA9R0dEOMHzULTKptmFEfMKuI OAfnIYp/WQM6FIIM4+y7OJ23RVeo/NFI0nr/yY3u8PZ5FoUjS6Q1cZvu81FRRN/D0AOU tEA1ecEqruIe+yljk6UkfyWINm9JMbIbLBV08EPwyXVU8wyUkAYuqtxUn/sLSwTh+unc ZIhmQWgcEQsfwnGEC0i+VZgNME/ChJAxUXF9nzYw5QOTgwN7qlxRaPIx4Tp4h7cCAf6F vuUUxA27TM5MkewuDZeVRNSe3fhCGGrZgy2DMRtq4G6n5NI0CqR9oyWboFPj5lhNuXar Anqw== 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=qskjNZzrIUnqSVSZWVW+0prk3460ga18o4E+MIOycdM=; b=it6GVRALj4uRxPGTCtD9mk4DLwui0JyRbYkBAixCESuO6QMUeBb0ANDII7zR6LeezS O40GFXVI48skeb9WAKxTln4ZIaJPaGOI7wWlnr77LGldmWciI7HwDSIP3jy8arx4PllS xzAWz8oDj0fJH+wOpIkHmj8L1PnAKlHGSdJupM2CjCGe7STQu1xSN2mFRh6oPDijXocI NEG54+sTe4pkWdgpLA1r4dzdpMP/RfjvqXaksdPrjef6Ipysp65lBHBIqHJ77lFe86ge oZO9Mh8aQD6uKiJcaAsf4eYS1hU5LgB/ITa3PneN2bTQRpbLOanBG6LnJwikGOD5fX2m cb2g== X-Gm-Message-State: AJcUukdVgQV6iJWnklpEe2gcdDAz6261pMxDvWD2h9AVHh5vb7Eo7YZ4 7u7FOs6BYOLRnbqZnjGAD7QXsx+56v8= X-Google-Smtp-Source: ALg8bN5ppYBw20DJbcF64zE+nVOln4V23uFp603mBIXnbaoDl4cby5pZ0MKJ0929N4rh6RiKUwtGEQ== X-Received: by 2002:adf:c846:: with SMTP id e6mr42263804wrh.243.1546604345552; Fri, 04 Jan 2019 04:19:05 -0800 (PST) Received: from localhost.localdomain (bzq-79-182-127-199.red.bezeqint.net. [79.182.127.199]) by smtp.gmail.com with ESMTPSA id j33sm68657978wre.91.2019.01.04.04.19.04 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 04 Jan 2019 04:19:05 -0800 (PST) From: Rami Rosen To: dts@dpdk.org Cc: Rami Rosen Date: Fri, 4 Jan 2019 14:18:49 +0200 Message-Id: <20190104121849.27581-1-ramirose@gmail.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH] framework/virt_base: 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: , X-List-Received-Date: Fri, 04 Jan 2019 12:19:06 -0000 This patch fixes a typo in framework/virt_base.py Signed-off-by: Rami Rosen --- framework/virt_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/virt_base.py b/framework/virt_base.py index fd2faeb..5eca712 100644 --- a/framework/virt_base.py +++ b/framework/virt_base.py @@ -59,7 +59,7 @@ class VirtBase(object): """ Initialize the VirtBase. dut: the instance of Dut - vm_name: the name of VM which you have confiured in the configure + vm_name: the name of VM which you have configured in the configure suite_name: the name of test suite """ self.host_dut = dut -- 2.19.2