diff options
author | Philip Chimento <philip.chimento@gmail.com> | 2021-07-17 16:13:13 -0700 |
---|---|---|
committer | Philip Chimento <philip.chimento@gmail.com> | 2021-07-17 16:13:13 -0700 |
commit | 124c196a6086396e373f4df2bf9dddd9cf17fd0e (patch) | |
tree | 9a0e9266cab81e624c35db511ba658036649ac74 | |
parent | e813406974e89ec2b168a38b15bf875678fe7efd (diff) | |
download | gjs-124c196a6086396e373f4df2bf9dddd9cf17fd0e.tar.gz |
maint: Fix lint errors
Unreviewed, pushing to fix build.
-rw-r--r-- | installed-tests/js/testIntrospection.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/installed-tests/js/testIntrospection.js b/installed-tests/js/testIntrospection.js index 19b89584..1037b50a 100644 --- a/installed-tests/js/testIntrospection.js +++ b/installed-tests/js/testIntrospection.js @@ -169,10 +169,9 @@ describe('Complete enumeration of GIRepositoryNamespace (new_enumerate)', functi it('all enumerated properties are defined', function () { const names = Object.keys(Gdk); - expect(() => { // Access each enumerated property to check it can be defined. - names.forEach((name) => Gdk[name]); + names.forEach(name => Gdk[name]); }).not.toThrowError(/API of type .* not implemented, cannot define .*/); }); }); |