mirror of
https://github.com/nlohmann/json.git
synced 2026-02-22 19:36:26 +00:00
♻️ rename internal_binary_t with binary_t
This commit is contained in:
@@ -485,14 +485,14 @@ TEST_CASE("constructors")
|
||||
{
|
||||
SECTION("empty binary")
|
||||
{
|
||||
json::internal_binary_t b{};
|
||||
json::binary_t b{};
|
||||
json j(b);
|
||||
CHECK(j.type() == json::value_t::binary);
|
||||
}
|
||||
|
||||
SECTION("filled binary")
|
||||
{
|
||||
json::internal_binary_t b({1, 2, 3});
|
||||
json::binary_t b({1, 2, 3});
|
||||
json j(b);
|
||||
CHECK(j.type() == json::value_t::binary);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user