Skip to content

Commit

Permalink
Squash warning due to deprecated use of delete_meta() in test_meta()
Browse files Browse the repository at this point in the history
Missed by #353 and #366
  • Loading branch information
khaeru committed Oct 26, 2020
1 parent 58035cb commit eff4cd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ixmp/tests/core/test_scenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def test_meta(self, mp, test_dict):
exp = test_dict['test_string']
assert obs == exp

scen.delete_meta(['test_int', 'test_bool'])
scen.remove_meta(['test_int', 'test_bool'])
obs = scen.get_meta()
assert len(obs) == 4
assert set(obs.keys()) == {'test_string', 'test_number',
Expand Down

0 comments on commit eff4cd6

Please sign in to comment.