hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/tools/testing/selftests/tc-testing/tdc_helper.py
....@@ -17,7 +17,10 @@
1717
1818 def get_unique_item(lst):
1919 """ For a list, return a list of the unique items in the list. """
20
- return list(set(lst))
20
+ if len(lst) > 1:
21
+ return list(set(lst))
22
+ else:
23
+ return lst
2124
2225
2326 def get_test_categories(alltests):