Skip to content

Commit

Permalink
💚 another approach to the AppVeyor error
Browse files Browse the repository at this point in the history
  • Loading branch information
nlohmann committed Dec 7, 2016
1 parent 81c43dc commit de289ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/src/unit-msgpack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,8 @@ TEST_CASE("MessagePack")
SECTION("-9223372036854775808..-2147483649 (int 64)")
{
std::vector<int64_t> numbers;
numbers.push_back(-9223372036854775807-1);
numbers.push_back(-2147483649);
numbers.push_back(INT64_MIN);
numbers.push_back(-2147483649ll);
for (auto i : numbers)
{
CAPTURE(i);
Expand Down

0 comments on commit de289ea

Please sign in to comment.