Skip to content

Commit

Permalink
fix long line in test_alternate_easyconfig_parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel committed May 24, 2024
1 parent 8a5ac07 commit 8e52d81
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/framework/easyconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -1825,7 +1825,9 @@ def test_alternate_easyconfig_parameters(self):
test_ecs_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'easyconfigs', 'test_ecs')
toy_ec = os.path.join(test_ecs_dir, 't', 'toy', 'toy-0.0.eb')

test_ec_txt = read_file(toy_ec).replace('postinstallcmds', 'post_install_cmds').replace('moduleclass', 'env_mod_class')
test_ec_txt = read_file(toy_ec)
test_ec_txt = test_ec_txt.replace('postinstallcmds', 'post_install_cmds')
test_ec_txt = test_ec_txt.replace('moduleclass', 'env_mod_class')

test_ec = os.path.join(self.test_prefix, 'test.eb')
write_file(test_ec, test_ec_txt)
Expand Down

0 comments on commit 8e52d81

Please sign in to comment.