mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
[skip ci] pathlib instead of os
Co-authored-by: Paul Romano <paul.k.romano@gmail.com>
This commit is contained in:
parent
7e074fe354
commit
aeeb078344
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ spherical_mesh.theta_grid = np.linspace(0, np.pi / 2, num=30)
|
|||
@pytest.mark.parametrize("mesh", [cylinder_mesh, regular_mesh, rectilinear_mesh, spherical_mesh])
|
||||
def test_write_data_to_vtk(mesh, tmpdir):
|
||||
# BUILD
|
||||
filename = tmpdir / "out.vtk"
|
||||
filename = Path(tmpdir) / "out.vtk"
|
||||
|
||||
data = np.random.random(mesh.num_mesh_cells)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue