Skip to content

Commit c71eb27

Browse files
committed
Merge branch 'appendPatchNewDocument' of https://github.com/solid/node-solid-server into appendPatchNewDocument
2 parents 6129eb9 + 173ecb7 commit c71eb27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/acl-oidc-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ describe('ACL with WebID+OIDC over HTTP', function () {
551551
done()
552552
})
553553
})
554-
it('user1 should be able to PATCH a non existing resource', function (done) {
554+
it('user1 should be able to PATCH (which CREATEs) a nonexistent resource', function (done) {
555555
const options = createOptions('/append-inherited/test.ttl', 'user1')
556556
options.body = 'INSERT DATA { :test :hello 456 .}'
557557
options.headers['content-type'] = 'application/sparql-update'
@@ -589,7 +589,7 @@ describe('ACL with WebID+OIDC over HTTP', function () {
589589
done()
590590
})
591591
})
592-
it('user2 should be able to PATCH insert on a non existing resource', function (done) {
592+
it('user2 should be able to PATCH INSERT to (which CREATEs) a nonexistent resource', function (done) {
593593
const options = createOptions('/append-inherited/new.ttl', 'user2')
594594
options.body = 'INSERT DATA { :test :hello 789 .}'
595595
options.headers['content-type'] = 'application/sparql-update'

0 commit comments

Comments
 (0)