From: Brenda J. Butler Date: Tue, 31 Oct 2017 18:28:02 +0000 (-0400) Subject: tc-testing: correction to docstring in get_unique_item X-Git-Tag: microblaze-4.16-rc1~330^2~233 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=7ae677fb85f46c6b1c0545a0558c507ab940d7c4;p=linux-2.6-microblaze.git tc-testing: correction to docstring in get_unique_item Signed-off-by: Brenda J. Butler Acked-by: Lucas Bates Signed-off-by: David S. Miller --- 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))