File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments