AK+Everywhere: Remove the char const* JSON value constructor

This commit is contained in:
Timothy Flynn 2025-02-17 11:59:45 -05:00 committed by Tim Flynn
commit 70eb0ba1cd
Notes: github-actions[bot] 2025-02-21 00:29:35 +00:00
10 changed files with 35 additions and 35 deletions

View file

@ -158,9 +158,9 @@ TEST_CASE(json_64_bit_value_coerced_to_32_bit)
TEST_CASE(json_duplicate_keys)
{
JsonObject json;
json.set("test", "foo");
json.set("test", "bar");
json.set("test", "baz");
json.set("test", "foo"sv);
json.set("test", "bar"sv);
json.set("test", "baz"sv);
EXPECT_EQ(json.to_byte_string(), "{\"test\":\"baz\"}");
}