Skip to content

Commit 798b1cf

Browse files
author
deiu
committed
Rename container to /foo/
1 parent 465897d commit 798b1cf

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

test/http.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -292,10 +292,10 @@ describe('HTTP APIs', function () {
292292
server.put('/fooo/bar.ttl')
293293
.set('content-type', 'text/turtle')
294294
.expect(function () {
295-
server.delete('/fooo/')
295+
server.delete('/foo/')
296296
.expect(function () {
297-
fs.unlinkSync(__dirname + '/resources/fooo/bar.ttl')
298-
fs.rmdirSync(__dirname + '/resources/fooo/')
297+
fs.unlinkSync(__dirname + '/resources/foo/bar.ttl')
298+
fs.rmdirSync(__dirname + '/resources/foo/')
299299
})
300300
.expect(409)
301301
})
@@ -304,13 +304,13 @@ describe('HTTP APIs', function () {
304304
it('should delete a new and empty container', function (done) {
305305
server.post('/')
306306
.set('content-type', 'text/turtle')
307-
.set('slug', 'fooo')
307+
.set('slug', 'foo')
308308
.set('link', '<http://www.w3.org/ns/ldp#BasicContainer>; rel="type"')
309309
.set('content-type', 'text/turtle')
310310
.expect(function () {
311-
server.delete('/fooo/')
311+
server.delete('/foo/')
312312
.expect(function () {
313-
server.get('/fooo/')
313+
server.get('/foo/')
314314
.expect(404)
315315
})
316316
.expect(200)

0 commit comments

Comments
 (0)