solid-contrib / web-access-control-tests

Tests if a Solid server implements web access control correctly
MIT License
2 stars 5 forks source link

syntax issue in delete #31

Closed ylebre closed 3 years ago

ylebre commented 3 years ago

I came across this:

https://github.com/solid/web-access-control-tests/blob/81669fa5e0119ef2c4101a3d57cdaf65872ddd18/test/surface/update.test.ts#L588

DELETE DATA { <#hello> <#linked> <#world> }

I expect that this should be:

DELETE DATA { <#hello> <#linked> <#world> . }

instead (like all the other instances are)?

ylebre commented 3 years ago

Turns out that sparql syntax allows the last . to be omitted, so both versions are valid.