Correcting attribute name

This commit is contained in:
Patrick Shriwise 2022-12-27 23:06:07 -06:00
parent 3779c5cc4d
commit c6f0d36bdb
2 changed files with 2 additions and 2 deletions

View file

@ -1144,7 +1144,7 @@
<parameters>15000000.0 1.0</parameters>
</energy>
</source>
<mesh id="1" library="libmesh" type="unstructured">
<mesh id="1" library="moab" type="unstructured">
<filename>test_mesh_tets.e</filename>
</mesh>
</settings>

View file

@ -88,7 +88,7 @@ def test_unstructured_mesh_sampling(model, test_cases):
if test_cases['library'] == 'libmesh' and not openmc.lib._libmesh_enabled():
pytest.skip("LibMesh is not enabled in this build.")
model.settings.source[0].space.mesh.libaray = test_cases['library']
model.settings.source[0].space.mesh.library = test_cases['library']
harness = PyAPITestHarness('statepoint.2.h5', model, test_cases['inputs_true'])
harness.main()