Skip to content

Commit

Permalink
sort paths in test for LibSymlink.BOTH_TO_DIR
Browse files Browse the repository at this point in the history
  • Loading branch information
lexming committed Feb 10, 2025
1 parent a9484c8 commit ad73222
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/framework/easyblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -3364,9 +3364,9 @@ def test_expand_module_search_path(self):
self.assertEqual(test_emsp("lib64", ModEnvVarType.PATH), ["lib64"])
self.assertEqual(test_emsp("lib64", ModEnvVarType.PATH_WITH_FILES), ["lib64"])
self.assertEqual(test_emsp("lib64", ModEnvVarType.PATH_WITH_TOP_FILES), ["lib64"])
self.assertEqual(test_emsp("lib*", ModEnvVarType.PATH), ["lib", "lib64"])
self.assertEqual(test_emsp("lib*", ModEnvVarType.PATH_WITH_FILES), ["lib", "lib64"])
self.assertEqual(test_emsp("lib*", ModEnvVarType.PATH_WITH_TOP_FILES), ["lib", "lib64"])
self.assertEqual(sorted(test_emsp("lib*", ModEnvVarType.PATH)), ["lib", "lib64"])
self.assertEqual(sorted(test_emsp("lib*", ModEnvVarType.PATH_WITH_FILES)), ["lib", "lib64"])
self.assertEqual(sorted(test_emsp("lib*", ModEnvVarType.PATH_WITH_TOP_FILES)), ["lib", "lib64"])


def suite():
Expand Down

0 comments on commit ad73222

Please sign in to comment.