Skip to content

Commit 6c026b3

Browse files
committed
fix :avail pattern in test_debug_lmod
1 parent 905d919 commit 6c026b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/framework/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5232,7 +5232,7 @@ def test_debug_lmod(self):
52325232
init_config(build_options={'debug_lmod': True})
52335233
out = self.modtool.run_module('avail', return_output=True)
52345234

5235-
for pattern in [r"^Lmod version", r"^lmod\(--terse -D avail\)\{", "Master:avail"]:
5235+
for pattern in [r"^Lmod version", r"^lmod\(--terse -D avail\)\{", ":avail"]:
52365236
regex = re.compile(pattern, re.M)
52375237
self.assertTrue(regex.search(out), "Pattern '%s' found in: %s" % (regex.pattern, out))
52385238
else:

0 commit comments

Comments
 (0)