Skip to content

Commit

Permalink
Merge branch 'appendPatchNewDocument' of https://github.com/solid/nod…
Browse files Browse the repository at this point in the history
…e-solid-server into appendPatchNewDocument
  • Loading branch information
bourgeoa committed Nov 30, 2023
2 parents 6129eb9 + 173ecb7 commit c71eb27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/acl-oidc-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit c71eb27

Please sign in to comment.