Skip to content
This repository has been archived by the owner on Jul 19, 2021. It is now read-only.

Commit

Permalink
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/res/enkf/config_keys.py
Original file line number Diff line number Diff line change
@@ -89,7 +89,7 @@ class ConfigKeys:
LOG_FILE = _log_file_key()
LOG_LEVEL = _log_level_key()
LSF_RESOURCE_KEY = _lsf_resource_key()
LSF_QUEUE_NAME_KEY = _lsf_resource_key()
LSF_QUEUE_NAME_KEY = _lsf_queue_key()
LSF_SERVER_KEY = _lsf_server_key()
UPDATE_LOG_PATH = _update_log_path()
STORE_SEED = _store_seed()
5 changes: 2 additions & 3 deletions python/tests/res/enkf/test_res_config.py
Original file line number Diff line number Diff line change
@@ -273,9 +273,8 @@ def assert_site_config(self, site_config, config_data, working_dir):
]
for key, act in corresponding:
exp = config_data[key]
errmsg = 'Error for key {key}, was: {act}, expected: {exp} '.format(key=key,
act=act,
exp=exp)
errmsg = 'Error for key {key}, expected: "{exp}", was: "{act}".'
errmsg = errmsg.format(key=key, act=act, exp=exp)
self.assertEqual(exp, act, msg=errmsg)

job_list = site_config.get_installed_jobs()

0 comments on commit b83b8f0

Please sign in to comment.