summaryrefslogtreecommitdiff
path: root/tests/core
diff options
context:
space:
mode:
authorDeeJayLSP <djlsplays@gmail.com>2022-10-28 15:17:49 -0300
committerDeeJayLSP <djlsplays@gmail.com>2022-10-28 15:17:49 -0300
commitdd64ceab47a30870ed9fb7c7e3cdfebdea60a50a (patch)
treec5c19794d5e9bb6a912a1421f1901ca2fde11935 /tests/core
parent999df8cdbfb73286aed661699361de91766e68cc (diff)
Change all WEBP strings and comments to WebP
Diffstat (limited to 'tests/core')
-rw-r--r--tests/core/io/test_image.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/core/io/test_image.h b/tests/core/io/test_image.h
index 38b616cda0..181d9a8a54 100644
--- a/tests/core/io/test_image.h
+++ b/tests/core/io/test_image.h
@@ -124,7 +124,7 @@ TEST_CASE("[Image] Saving and loading") {
image_jpg->load_jpg_from_buffer(data_jpg) == OK,
"The JPG image should load successfully.");
- // Load WEBP
+ // Load WebP
Ref<Image> image_webp = memnew(Image());
Ref<FileAccess> f_webp = FileAccess::open(TestUtils::get_data_path("images/icon.webp"), FileAccess::READ, &err);
PackedByteArray data_webp;
@@ -132,7 +132,7 @@ TEST_CASE("[Image] Saving and loading") {
f_webp->get_buffer(data_webp.ptrw(), f_webp->get_length());
CHECK_MESSAGE(
image_webp->load_webp_from_buffer(data_webp) == OK,
- "The WEBP image should load successfully.");
+ "The WebP image should load successfully.");
// Load PNG
Ref<Image> image_png = memnew(Image());