summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMax Hilbrunner <mhilbrunner@users.noreply.github.com>2022-10-29 19:28:47 +0200
committerGitHub <noreply@github.com>2022-10-29 19:28:47 +0200
commit11d74d606a442d27b060a1c3cb292a8da715ce68 (patch)
tree7d462561a1c9640cc4e4bc4fe731ac7ca7b4fe17 /tests
parent11e1bac768349ae821647a582282458e83b8d72b (diff)
parentdd64ceab47a30870ed9fb7c7e3cdfebdea60a50a (diff)
Merge pull request #67980 from DeeJayLSP/webpcase
Change all WEBP strings and comments to WebP
Diffstat (limited to 'tests')
-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());