hc
2024-05-10 61598093bbdd283a7edc367d900f223070ead8d2
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):