Skip to content

Commit

Permalink
Remove sorted tests return
Browse files Browse the repository at this point in the history
Signed-off-by: Nig3l <[email protected]>
  • Loading branch information
Ni-g-3l committed Feb 2, 2025
1 parent 0741106 commit 6766f3a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/rez/package_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def find_requested_test_names(self, requested_tests):
requested_test_names = set()
for requested_test in requested_tests:
requested_test_names.update(set(fnmatch.filter(pkg_test_names, requested_test)))
return sorted(requested_test_names)
return requested_test_names

@property
def num_tests(self):
Expand Down
1 change: 0 additions & 1 deletion src/rez/tests/test_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ def test_wildcard_02(self):
"success",
"check_car_ideas did not succeed",
)

self.assertEqual(
self._get_test_result(runner, "command_as_string_success")["status"],
"success",
Expand Down

0 comments on commit 6766f3a

Please sign in to comment.