From 7d7d4e120999de66e4fc882f3d6224603ccb306f Mon Sep 17 00:00:00 2001 From: Neil Date: Thu, 1 Feb 2018 09:07:21 +1100 Subject: Backport: Templatize Partitioning so it can hold different types. Backport of changeset 6444:1bd57324aa36. --- test/unit/testPartitioning.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/unit/testPartitioning.cxx b/test/unit/testPartitioning.cxx index ed2957289..68471979b 100644 --- a/test/unit/testPartitioning.cxx +++ b/test/unit/testPartitioning.cxx @@ -26,7 +26,7 @@ static const int testArray[lengthTestArray] = {3, 4, 5, 6, 7, 8, 9, 10}; TEST_CASE("SplitVectorWithRangeAdd") { - SplitVectorWithRangeAdd svwra(growSize); + SplitVectorWithRangeAdd svwra(growSize); SECTION("IsEmptyInitially") { REQUIRE(0 == svwra.Length()); @@ -49,7 +49,7 @@ TEST_CASE("SplitVectorWithRangeAdd") { TEST_CASE("Partitioning") { - Partitioning part(growSize); + Partitioning part(growSize); SECTION("IsEmptyInitially") { REQUIRE(1 == part.Partitions()); -- cgit v1.2.3