forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
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):