mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 05:35:49 -04:00
commit local changes
This commit is contained in:
parent
71cb56619a
commit
b77bec0867
1 changed files with 4 additions and 4 deletions
|
|
@ -40,9 +40,9 @@ class MeshSurfaceFilterTest(HashedPyAPITestHarness):
|
|||
else:
|
||||
axis_labels = ('x', 'y', 'z')
|
||||
for axis in axis_labels[:nd]:
|
||||
expected += [f'Outgoing, {axis}-min', f'Incoming, {axis}-min',
|
||||
f'Outgoing, {axis}-max', f'Incoming, {axis}-max']
|
||||
expected.append(expected[0])
|
||||
expected += [f'Outgoing, {axis}-min', f'Incoming, {axis}-min',
|
||||
f'Outgoing, {axis}-max', f'Incoming, {axis}-max']
|
||||
expected.append(expected[0])
|
||||
assert len(labels) == len(expected)
|
||||
for line, exp in zip(labels, expected):
|
||||
assert exp in line, f"{exp} not in {line}"
|
||||
|
|
@ -161,5 +161,5 @@ def model():
|
|||
|
||||
|
||||
def test_filter_mesh(model):
|
||||
harness = HashedPyAPITestHarness('statepoint.5.h5', model)
|
||||
harness = MeshSurfaceFilterTest('statepoint.5.h5', model)
|
||||
harness.main()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue