Forgot {} for the GIVEN structure.

This commit is contained in:
Joseph Lenox 2018-07-30 10:42:43 -05:00
parent 2610218b0e
commit e68bc06a3d

View File

@ -8,7 +8,7 @@ using namespace Slic3r;
using namespace std::literals::string_literals;
SCENARIO("lift() is not ignored after unlift() at large values of Z", "[!mayfail]") {
GIVEN("A config from a file and a single extruder.")
GIVEN("A config from a file and a single extruder.") {
GCodeWriter writer;
auto& config {writer.config};
config.set_defaults();
@ -35,3 +35,4 @@ SCENARIO("lift() is not ignored after unlift() at large values of Z", "[!mayfail
}
}
}
}