summaryrefslogtreecommitdiff
path: root/installed-tests
diff options
context:
space:
mode:
authorPhilip Chimento <philip.chimento@gmail.com>2022-10-29 16:19:35 -0700
committerPhilip Chimento <philip.chimento@gmail.com>2022-10-29 16:19:35 -0700
commit9806c5e631ca06fff4b972ddddf7eef170893d8d (patch)
treed3668ac3ebd8cd3a9811f07b400228739b0bafe4 /installed-tests
parent93dd804a4d2c2066029f9b8615d73b07d04c0e8c (diff)
downloadgjs-9806c5e631ca06fff4b972ddddf7eef170893d8d.tar.gz
maint: Fix ICon typo
Diffstat (limited to 'installed-tests')
-rw-r--r--installed-tests/js/testGObjectClass.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/installed-tests/js/testGObjectClass.js b/installed-tests/js/testGObjectClass.js
index ef73b15f..459a9932 100644
--- a/installed-tests/js/testGObjectClass.js
+++ b/installed-tests/js/testGObjectClass.js
@@ -911,13 +911,13 @@ describe('GObject virtual function', function () {
});
it('are defined also for static virtual functions', function () {
- const CustomEmptyGICon = GObject.registerClass({
+ const CustomEmptyGIcon = GObject.registerClass({
Implements: [Gio.Icon],
- }, class CustomEmptyGICon extends GObject.Object {});
+ }, class CustomEmptyGIcon extends GObject.Object {});
expect(Gio.Icon.deserialize).toBeInstanceOf(Function);
- expect(CustomEmptyGICon.deserialize).toBe(Gio.Icon.deserialize);
+ expect(CustomEmptyGIcon.deserialize).toBe(Gio.Icon.deserialize);
expect(Gio.Icon.new_for_string).toBeInstanceOf(Function);
- expect(CustomEmptyGICon.new_for_string).toBe(Gio.Icon.new_for_string);
+ expect(CustomEmptyGIcon.new_for_string).toBe(Gio.Icon.new_for_string);
});
});