diff --git a/examples/step_definition.cpp b/examples/step_definition.cpp index 584454a5..10199d59 100644 --- a/examples/step_definition.cpp +++ b/examples/step_definition.cpp @@ -76,7 +76,7 @@ WHEN(custom_par_when, "this is {pair of integers}") std::pair p = CUKE_ARG(1); std::cout << "Pair initialized with CUKE_ARG(1) and two values: " << p.first << ' ' << p.second << std::endl; - cuke::context>(p); + cuke::context>(p); } THEN(custom_par_then, "their values are {int} and {int}") @@ -84,7 +84,7 @@ THEN(custom_par_then, "their values are {int} and {int}") const int var1 = CUKE_ARG(1); const int var2 = CUKE_ARG(2); cuke::equal(cuke::context>().first, var1); - cuke::equal(cuke::context>().second, var2); + cuke::equal(cuke::context>().second, var2); } struct foo