diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 6ce06ac..e1b4882 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -17,7 +17,7 @@ jobs: node-version: [20.x, 22.x] steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 diff --git a/test/api.js b/test/api.js index 9dfaad4..9967f46 100644 --- a/test/api.js +++ b/test/api.js @@ -30,10 +30,10 @@ function itemChecker (done, field, value) { describe('Functions', function () { it('can be listed', function (done) { - w3c.functions().fetch(listChecker(done, 'Systems')); + w3c.functions().fetch(listChecker(done, 'IT/Systems Operations')); }); it('can be fetched', function (done) { - w3c.function(122803).fetch(itemChecker(done, 'name', 'Systems')); + w3c.function(122803).fetch(itemChecker(done, 'name', 'IT/Systems Operations')); }); it('have services', function (done) { w3c.function(122803).services().fetch(listChecker(done, 'sysreq (Mailing List)')); @@ -249,7 +249,7 @@ describe('Specifications by status', function () { describe("Embeds", function () { it('apply to functions', function (done) { - w3c.functions().fetch({ embed: true }, embedChecker(done, 'name', 'Systems')); + w3c.functions().fetch({ embed: true }, embedChecker(done, 'name', 'IT/Systems Operations')); }); it("apply to groups", function (done) { w3c.groups().fetch({ embed: true }, embedChecker(done, "type", "community group"));