[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20171031003749.17928-1-bjb@mojatatu.com>
Date: Mon, 30 Oct 2017 20:37:49 -0400
From: "Brenda J. Butler" <bjb@...atatu.com>
To: davem@...emloft.net
Cc: jhs@...atatu.com, xiyou.wangcong@...il.com, jiri@...nulli.us,
chrism@...lanox.com, lucasb@...atatu.com, aring@...atatu.com,
mrv@...atatu.com, netdev@...r.kernel.org,
"Brenda J. Butler" <bjb@...atatu.com>
Subject: [PATCH net-next] tc-testing: correction to docstring in get_unique_item
The docstring says the function returns a "set" but it returns
a "list". These are both python data types, so we should refer to
the right one that is being returned.
Signed-off-by: Brenda J. Butler <bjb@...atatu.com>
---
This patch was formerly sent as part of a 15-patch series. It is being
split off as a stand-alone patch.
tools/testing/selftests/tc-testing/tdc_helper.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/testing/selftests/tc-testing/tdc_helper.py b/tools/testing/selftests/tc-testing/tdc_helper.py
index c3254f861fb2..6f99a4efe761 100644
--- a/tools/testing/selftests/tc-testing/tdc_helper.py
+++ b/tools/testing/selftests/tc-testing/tdc_helper.py
@@ -15,7 +15,7 @@ def get_categorized_testlist(alltests, ucat):
def get_unique_item(lst):
- """ For a list, return a set of the unique items in the list. """
+ """ For a list, return a list of the unique items in the list. """
return list(set(lst))
--
2.15.0.rc0
Powered by blists - more mailing lists