diff --git a/.github/workflows/lint-code.yml b/.github/workflows/lint-code.yml index 92ac18b067..9a8c6835ad 100644 --- a/.github/workflows/lint-code.yml +++ b/.github/workflows/lint-code.yml @@ -28,7 +28,7 @@ jobs: - name: Install JS Dependencies shell: bash - run: npm install -g prettier@3.3.3 + run: npm install -g prettier@3.6.2 - name: Lint run: ${{ github.workspace }}/Meta/lint-ci.sh diff --git a/Libraries/LibJS/Tests/functions/arrow-functions.js b/Libraries/LibJS/Tests/functions/arrow-functions.js index 7d75ecd512..336657874e 100644 --- a/Libraries/LibJS/Tests/functions/arrow-functions.js +++ b/Libraries/LibJS/Tests/functions/arrow-functions.js @@ -90,7 +90,7 @@ test("currying", () => { test("with comma operator", () => { let foo, bar; - (foo = bar), baz => {}; + ((foo = bar), baz => {}); expect(foo).toBe(undefined); expect(bar).toBe(undefined); });