From 4ff27b207ed0ee52bae6abf07f40c23edcf17509 Mon Sep 17 00:00:00 2001 From: Niels Date: Sun, 19 Jun 2016 17:56:58 +0200 Subject: [PATCH] fixed two typos --- test/src/unit.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/src/unit.cpp b/test/src/unit.cpp index 0a2bdd10..609e1be9 100644 --- a/test/src/unit.cpp +++ b/test/src/unit.cpp @@ -1285,7 +1285,7 @@ TEST_CASE("constructors") SECTION("create a JSON value from an input stream") { - SECTION("sts::stringstream") + SECTION("std::stringstream") { std::stringstream ss; ss << "[\"foo\",1,2,3,false,{\"one\":1}]"; @@ -14065,7 +14065,7 @@ TEST_CASE("regression tests") CHECK(dest == expected); } - SECTION("issue ##235 - ambiguous overload for 'push_back' and 'operator+='") + SECTION("issue #235 - ambiguous overload for 'push_back' and 'operator+='") { json data = {{"key", "value"}}; data.push_back({"key2", "value2"});