mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 04:15:23 +03:00
AK: Fix test compile warnings
These warnings are pretty harmless, but warnings nonetheless.
This commit is contained in:
parent
d4fa8e4b00
commit
4a6605bbe5
Notes:
sideshowbarker
2024-07-19 10:19:19 +09:00
Author: https://github.com/shannonbooth Commit: https://github.com/SerenityOS/serenity/commit/4a6605bbe5c Pull-request: https://github.com/SerenityOS/serenity/pull/1026
@ -1,10 +1,10 @@
|
||||
#include <AK/TestSuite.h>
|
||||
|
||||
#include <AK/String.h>
|
||||
#include <AK/HashMap.h>
|
||||
#include <AK/JsonArray.h>
|
||||
#include <AK/JsonObject.h>
|
||||
#include <AK/JsonValue.h>
|
||||
#include <AK/String.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
|
||||
TEST_CASE(load_form)
|
||||
@ -79,7 +79,7 @@ TEST_CASE(json_utf8_character)
|
||||
auto json = JsonValue::from_string("\"\xc3\x84\"");
|
||||
EXPECT_EQ(json.type(), JsonValue::Type::String);
|
||||
EXPECT_EQ(json.as_string().is_null(), false);
|
||||
EXPECT_EQ(json.as_string().length(), 2);
|
||||
EXPECT_EQ(json.as_string().length(), size_t { 2 });
|
||||
}
|
||||
|
||||
TEST_MAIN(JSON)
|
||||
|
@ -7,7 +7,7 @@ TEST_CASE(construct_empty)
|
||||
EXPECT(StringView().is_null());
|
||||
EXPECT(StringView().is_empty());
|
||||
EXPECT(!StringView().characters_without_null_termination());
|
||||
EXPECT_EQ(StringView().length(), 0);
|
||||
EXPECT_EQ(StringView().length(), size_t { 0 });
|
||||
}
|
||||
|
||||
TEST_CASE(view_literal)
|
||||
|
Loading…
Reference in New Issue
Block a user