Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
3bhady authored and lordofhyphens committed Apr 3, 2019
1 parent 8dc4e64 commit 5361240
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/test/libslic3r/test_3mf.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#include <catch.hpp>
#include <test_options.hpp>
#include <string>
#include "Model.hpp"
#include "TMF.hpp"

Expand All @@ -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);
}
Expand Down

0 comments on commit 5361240

Please sign in to comment.