Skip to content

Commit c47d19d

Browse files
committed
Format string_length_size_4.cpp
Signed-off-by: Aubrey (Sanae) <aubrey@hall.ly>
1 parent 697b80a commit c47d19d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

extras/tests/MixedConfiguration/string_length_size_4.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ TEST_CASE("ARDUINOJSON_STRING_LENGTH_SIZE == 4") {
5757
auto binary = doc.as<MsgPackBinary>();
5858
REQUIRE(binary.size() == 65536);
5959
REQUIRE(binary.data() != nullptr);
60-
REQUIRE(std::string(reinterpret_cast<const char*>(binary.data()), binary.size()) == str);
60+
REQUIRE(std::string(reinterpret_cast<const char*>(binary.data()),
61+
binary.size()) == str);
6162
}
6263
}

0 commit comments

Comments
 (0)