[gjs] maint: Fix lint errors



commit 124c196a6086396e373f4df2bf9dddd9cf17fd0e
Author: Philip Chimento <philip chimento gmail com>
Date:   Sat Jul 17 16:13:13 2021 -0700

    maint: Fix lint errors
    
    Unreviewed, pushing to fix build.

 installed-tests/js/testIntrospection.js | 3 +--
 1 file changed, 1 insertion(+), 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 .*/);
     });
 });


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]