diff --git a/src/python/OBis/obis/dm/data_mgmt_test.py b/src/python/OBis/obis/dm/data_mgmt_test.py index ec637029107cc73e0c30399c8f6cee0029f0b110..17202afd72951d14726cf97ad9ef87266e88288c 100644 --- a/src/python/OBis/obis/dm/data_mgmt_test.py +++ b/src/python/OBis/obis/dm/data_mgmt_test.py @@ -59,14 +59,14 @@ def git_status(path=None, annex=False): def check_correct_config_semantics(): # This how things should work - with open('.obis/properties.json') as f: + with open('.obis/repository.json') as f: config_local = json.load(f) assert config_local.get('data_set_id') is not None def check_workaround_config_semantics(): # This how things should work - with open('.obis/properties.json') as f: + with open('.obis/repository.json') as f: config_local = json.load(f) assert config_local.get('data_set_id') is None