Skip to content

Commit

Permalink
Fix some building failures on FreeBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
Pichi committed Jun 17, 2021
1 parent 4bab44c commit 6493d31
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/vos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include "vo.hpp"
#include <boost/test/unit_test.hpp>
#include <pichi/common/endpoint.hpp>
#include <pichi/common/literals.hpp>
#include <pichi/vo/keys.hpp>
#include <pichi/vo/parse.hpp>
#include <pichi/vo/to_json.hpp>
Expand Down Expand Up @@ -235,7 +236,7 @@ BOOST_AUTO_TEST_CASE(parseDestinations_Correct_One)
json.AddMember("localhost", 16, alloc);
auto dests = vo::parseDestinantions(json);

BOOST_CHECK_EQUAL(1, dests.size());
BOOST_CHECK_EQUAL(1_sz, dests.size());
BOOST_CHECK(makeEndpoint("localhost", 16) == dests.front());
}

Expand Down

0 comments on commit 6493d31

Please sign in to comment.