summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/vtk_write.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vtk_write.cpp b/tests/vtk_write.cpp
index b2e30f0..0df9998 100644
--- a/tests/vtk_write.cpp
+++ b/tests/vtk_write.cpp
@@ -48,7 +48,7 @@ SAW_TEST("VTK Write test example"){
auto& cell_0 = cells.at({{{0,0}}});
cell_0.template get<"velocity">()= {{0.5,-0.1}};
- cell_0.template get<"pressure">().set({1.1});
+ cell_0.template get<"pressure">().set(1.1);
auto eov = lbm::impl::lbm_vtk_writer<sch::Array<sch::MacroStruct<sch::T,2>, 2>>::apply(sstream, cells);
SAW_EXPECT(eov.is_value(), "vtk writer failed to write");