diff options
-rw-r--r-- | docs/reference/testing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/testing.md b/docs/reference/testing.md index d7dc5cf..ea43721 100644 --- a/docs/reference/testing.md +++ b/docs/reference/testing.md @@ -203,7 +203,7 @@ class MyParam { INSTANTIATE_TEST_SUITE_P(MyInstantiation, MyTestSuite, ConvertGenerator(Combine(Values(1, 1.2), Bool()), - [](const std::tuple<int i, bool>& t){ + [](const std::tuple<int, bool>& t){ const auto [i, b] = t; return MyParam(i, b); })); |