Skip to content

Commit

Permalink
Updating expected filenames in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pshriwise committed Aug 22, 2024
1 parent 0a84dd0 commit 0519844
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions test/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_examples(example, request):
model = openmc.Model.from_xml()

world = [500, 500, 500]
output = example_name(example)
output = example_name(example) + '.jou'
to_cubit_journal(model.geometry, world=world, filename=output)

gold_file = request.path.parent / Path('gold') / Path(output)
Expand All @@ -58,7 +58,7 @@ def test_examples_cli(example, request):

openmc.reset_auto_ids()
world = [500, 500, 500]
output = example_name(example)
output = example_name(example) + '.jou'
cmd = ['openmc_to_cad', '.', '-o', output, '--world'] + [str(w) for w in world]
pipe = subprocess.Popen(cmd)
pipe.wait()
Expand Down

0 comments on commit 0519844

Please sign in to comment.