Skip to content

Commit be2e192

Browse files
authored
Merge pull request #3304 from boegel/fix_broken_test
fix broken test for --include-easyblocks-from-pr
2 parents bb02431 + 6afc01f commit be2e192

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/framework/options.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2750,7 +2750,7 @@ def test_xxx_include_easyblocks_from_pr(self):
27502750
write_file(self.logfile, '')
27512751

27522752
args = [
2753-
'--from-pr=9979', # PR for CMake easyconfig
2753+
'--from-pr=10487', # PR for CMake easyconfig
27542754
'--include-easyblocks-from-pr=1936', # PR for EB_CMake easyblock
27552755
'--unittest-file=%s' % self.logfile,
27562756
'--github-user=%s' % GITHUB_TEST_ACCOUNT,
@@ -2760,8 +2760,8 @@ def test_xxx_include_easyblocks_from_pr(self):
27602760
logtxt = read_file(self.logfile)
27612761

27622762
# easyconfig from pr is found
2763-
ec_pattern = os.path.join(self.test_prefix, '.*', 'files_pr9979', 'c', 'CMake',
2764-
'CMake-3.16.4-GCCcore-9.2.0.eb')
2763+
ec_pattern = os.path.join(self.test_prefix, '.*', 'files_pr10487', 'c', 'CMake',
2764+
'CMake-3.16.4-GCCcore-9.3.0.eb')
27652765
ec_regex = re.compile(r"Parsing easyconfig file %s" % ec_pattern, re.M)
27662766
self.assertTrue(ec_regex.search(logtxt), "Pattern '%s' found in: %s" % (ec_regex.pattern, logtxt))
27672767

0 commit comments

Comments
 (0)