Skip to content

Commit

Permalink
fix typo in file_interface_openmc
Browse files Browse the repository at this point in the history
  • Loading branch information
yardasol committed Dec 1, 2022
1 parent 660e88f commit 8396c2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration_tests/file_interface_openmc/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ def test_write_depletion_settings(openmc_depcode, msr):
openmc_depcode.write_depletion_settings(msr, 0)
with open(openmc_depcode.runtime_inputfile['depletion_settings']) as f:
j = json.load(f)
assert j['directory'] == Path(
str(openmc_depcode.runtime_inputfile['settings']).parents[0])
assert j['directory'] == str(Path(
openmc_depcode.runtime_inputfile['settings']).parents[0])
assert j['timesteps'][0] == msr.dep_step_length_cumulative[0]
assert j['operator_kwargs']['chain_file'] == \
openmc_depcode.template_input_file_path['chain_file']
Expand Down

0 comments on commit 8396c2b

Please sign in to comment.