💚 another try to fix the AppVeyor build

pull/395/head
Niels Lohmann 2016-12-07 16:43:55 +01:00
parent 74571d531c
commit 3f14a09e73
1 changed files with 7 additions and 4 deletions

View File

@ -225,10 +225,13 @@ TEST_CASE("MessagePack")
SECTION("-32769..-2147483648")
{
for (auto i : std::vector<int32_t>(
{
-32769, -65536, -77777, -1048576, -2147483648
}))
std::vector<int32_t> numbers;
numbers.push_back(-32769);
numbers.push_back(-65536);
numbers.push_back(-77777);
numbers.push_back(-1048576);
numbers.push_back(-2147483648);
for (auto i : numbers)
{
CAPTURE(i);