From e14e5f000a82fe4ca7b48dd5a6f0fd6c01e83a4e Mon Sep 17 00:00:00 2001 From: Alain Bourgeois Date: Thu, 30 Nov 2023 20:41:42 +0100 Subject: [PATCH 1/2] Update test/integration/acl-oidc-test.js Co-authored-by: Ted Thibodeau Jr --- test/integration/acl-oidc-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/acl-oidc-test.js b/test/integration/acl-oidc-test.js index 8ac6ef43c..7660cc0d9 100644 --- a/test/integration/acl-oidc-test.js +++ b/test/integration/acl-oidc-test.js @@ -551,7 +551,7 @@ describe('ACL with WebID+OIDC over HTTP', function () { done() }) }) - it('user1 should be able to PATCH a non existing resource', function (done) { + it('user1 should be able to PATCH (which CREATEs) a nonexistent resource', function (done) { const options = createOptions('/append-inherited/test.ttl', 'user1') options.body = 'INSERT DATA { :test :hello 456 .}' options.headers['content-type'] = 'application/sparql-update' From 173ecb7fd64d367df0a68fd4c9fdca0101fbd997 Mon Sep 17 00:00:00 2001 From: Alain Bourgeois Date: Thu, 30 Nov 2023 20:41:55 +0100 Subject: [PATCH 2/2] Update test/integration/acl-oidc-test.js Co-authored-by: Ted Thibodeau Jr --- test/integration/acl-oidc-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/acl-oidc-test.js b/test/integration/acl-oidc-test.js index 7660cc0d9..37728724e 100644 --- a/test/integration/acl-oidc-test.js +++ b/test/integration/acl-oidc-test.js @@ -589,7 +589,7 @@ describe('ACL with WebID+OIDC over HTTP', function () { done() }) }) - it('user2 should be able to PATCH insert on a non existing resource', function (done) { + it('user2 should be able to PATCH INSERT to (which CREATEs) a nonexistent resource', function (done) { const options = createOptions('/append-inherited/new.ttl', 'user2') options.body = 'INSERT DATA { :test :hello 789 .}' options.headers['content-type'] = 'application/sparql-update'