Commit 3f14a09e authored by Niels Lohmann's avatar Niels Lohmann

💚 another try to fix the AppVeyor build

parent 74571d53
...@@ -225,10 +225,13 @@ TEST_CASE("MessagePack") ...@@ -225,10 +225,13 @@ TEST_CASE("MessagePack")
SECTION("-32769..-2147483648") SECTION("-32769..-2147483648")
{ {
for (auto i : std::vector<int32_t>( std::vector<int32_t> numbers;
{ numbers.push_back(-32769);
-32769, -65536, -77777, -1048576, -2147483648 numbers.push_back(-65536);
})) numbers.push_back(-77777);
numbers.push_back(-1048576);
numbers.push_back(-2147483648);
for (auto i : numbers)
{ {
CAPTURE(i); CAPTURE(i);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment