From 536124072d9261f36c788796dd547faca2fa618b Mon Sep 17 00:00:00 2001 From: 3bhady Date: Wed, 3 Apr 2019 16:41:52 +0200 Subject: [PATCH] fix formatting --- src/test/libslic3r/test_3mf.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/test/libslic3r/test_3mf.cpp b/src/test/libslic3r/test_3mf.cpp index 09384d790..23cd24ee7 100644 --- a/src/test/libslic3r/test_3mf.cpp +++ b/src/test/libslic3r/test_3mf.cpp @@ -1,6 +1,5 @@ #include #include -#include #include "Model.hpp" #include "TMF.hpp" @@ -9,9 +8,9 @@ using namespace Slic3r; SCENARIO("Reading 3mf file") { GIVEN("umlauts in the path of the file") { - auto model {new Slic3r::Model()}; + auto model {new Slic3r::Model()}; WHEN("3mf model is read") { - auto ret = Slic3r::IO::TMF::read(std::string(testfile_dir) +"test_3mf/Geräte/box.3mf",model); + auto ret = Slic3r::IO::TMF::read(testfile("test_3mf/Geräte/box.3mf"),model); THEN("read should not return 0") { REQUIRE(ret == 1); }