aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/unit_tests/fixtures.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit_tests/fixtures.hpp')
-rw-r--r--test/unit_tests/fixtures.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit_tests/fixtures.hpp b/test/unit_tests/fixtures.hpp
index aaf6571..011fb75 100644
--- a/test/unit_tests/fixtures.hpp
+++ b/test/unit_tests/fixtures.hpp
@@ -59,14 +59,14 @@ private:
class WithEchoExe : public WithParam {
public:
- WithEchoExe() : WithParam{"--echo_exe="} {}
+ WithEchoExe() : WithParam("--echo_exe=") {}
const std::string& get_echo_exe() { return get_value(); }
};
class WithWorkerExe : public WithParam {
public:
- WithWorkerExe() : WithParam{"--worker_exe="}, m_cmd{worker::Command::create()} {}
+ WithWorkerExe() : WithParam("--worker_exe="), m_cmd(worker::Command::create()) {}
const std::string& get_worker_exe() { return get_value(); }