From 9b7ffd55e8a3566f95ccf4827ffcfcf2feae4a7d Mon Sep 17 00:00:00 2001 From: Thomas-Ulrich Date: Tue, 6 Feb 2024 15:18:04 +0100 Subject: [PATCH] fix test --- test/src/xdmfwritertest.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/src/xdmfwritertest.cpp b/test/src/xdmfwritertest.cpp index 57e5c7d..e680a39 100644 --- a/test/src/xdmfwritertest.cpp +++ b/test/src/xdmfwritertest.cpp @@ -225,8 +225,9 @@ int main(int argc, char* argv[]) type, args.getAdditionalArgument("filename"), start); + std::string extraIntVarName = ""; - writer.init(cellVariables, vertexVariables, + writer.init(cellVariables, vertexVariables, extraIntVarName.c_str(), !args.isSet("no-vertex-filter"), !args.isSet("no-partition")); unsigned int numCells;