From 4c871c58f80babe0a486c01c8f1987f96719a581 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sat, 16 Dec 2017 11:16:34 +0100 Subject: [PATCH] :white_check_mark: re-added tests for algorithms --- test/src/unit-algorithms.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/src/unit-algorithms.cpp b/test/src/unit-algorithms.cpp index bc108dcdda..5a106b6ac8 100644 --- a/test/src/unit-algorithms.cpp +++ b/test/src/unit-algorithms.cpp @@ -256,7 +256,6 @@ TEST_CASE("algorithms") SECTION("set operations") { - /* SECTION("std::merge") { { @@ -268,7 +267,6 @@ TEST_CASE("algorithms") CHECK(j3 == json({1, 2, 2, 3, 4, 5, 6, 7, 8})); } } - */ SECTION("std::set_difference") { @@ -290,7 +288,6 @@ TEST_CASE("algorithms") CHECK(j3 == json({1, 2, 3, 5, 7})); } - /* SECTION("std::set_union") { json j1 = {2, 4, 6, 8}; @@ -310,7 +307,6 @@ TEST_CASE("algorithms") std::set_symmetric_difference(j1.begin(), j1.end(), j2.begin(), j2.end(), std::back_inserter(j3)); CHECK(j3 == json({1, 3, 4, 5, 6, 7, 8})); } - */ } SECTION("heap operations")