fix formatting

This commit is contained in:
3bhady 2019-04-03 16:41:52 +02:00 committed by Joseph Lenox
parent 8dc4e64160
commit 536124072d

View File

@ -1,6 +1,5 @@
#include <catch.hpp>
#include <test_options.hpp>
#include <string>
#include "Model.hpp"
#include "TMF.hpp"
@ -11,7 +10,7 @@ SCENARIO("Reading 3mf file") {
GIVEN("umlauts in the path of the file") {
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);
}