Skip to content

Commit 6ccac18

Browse files
committed
Fix comments
1 parent 3f6fff7 commit 6ccac18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

extras/tests/JsonDeserializer/errors.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ TEST_CASE("deserializeJson() returns NoMemory if string length overflows") {
121121
}
122122
}
123123

124-
TEST_CASE("deserializeJson() returns NoMemory if extension allocation fails") {
124+
TEST_CASE("deserializeJson() returns NoMemory if 8-bit slot allocation fails") {
125125
JsonDocument doc(FailingAllocator::instance());
126126

127127
SECTION("uint32_t should pass") {

extras/tests/JsonVariant/set.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ TEST_CASE("JsonVariant::set() releases the previous value") {
393393
}
394394
}
395395

396-
TEST_CASE("JsonVariant::set() reuses extension slot") {
396+
TEST_CASE("JsonVariant::set() reuses 8-bit slot") {
397397
SpyingAllocator spy;
398398
JsonDocument doc(&spy);
399399
JsonVariant variant = doc.to<JsonVariant>();

0 commit comments

Comments
 (0)