diff --git a/tests/unit.rs b/tests/unit.rs index 84e468e6..598b68a8 100644 --- a/tests/unit.rs +++ b/tests/unit.rs @@ -1,16 +1,16 @@ -use std::path::Path; -use nalgebra::{DefaultAllocator, DimName}; -use nalgebra::allocator::Allocator; use fenris::io::vtk::{FiniteElementMeshDataSetBuilder, VtkCellConnectivity}; use fenris::mesh::Mesh; +use nalgebra::allocator::Allocator; +use nalgebra::{DefaultAllocator, DimName}; +use std::path::Path; mod unit_tests; fn export_mesh_vtk(test_name: &str, file_stem: &str, mesh: &Mesh) - where - D: DimName, - DefaultAllocator: Allocator, - C: VtkCellConnectivity, +where + D: DimName, + DefaultAllocator: Allocator, + C: VtkCellConnectivity, { let output_path = Path::new("data/unit_tests/") .join(test_name) @@ -19,4 +19,3 @@ fn export_mesh_vtk(test_name: &str, file_stem: &str, mesh: &Mesh