@@ -506,7 +506,8 @@ describe('HTTP APIs', function () {
506
506
// Ensure all these are finished before running tests
507
507
return Promise . all ( [
508
508
rm ( '/false-file-48484848' ) ,
509
- createTestContainer ( 'delete-test-empty-container' ) ,
509
+ // createTestContainer('delete-test-empty-container'),
510
+ createTestResource ( '/delete-test-empty-container/test.txt.acl' ) ,
510
511
createTestResource ( '/put-resource-1.ttl' ) ,
511
512
createTestResource ( '/delete-test-non-empty/test.ttl' )
512
513
] )
@@ -528,7 +529,7 @@ describe('HTTP APIs', function () {
528
529
. expect ( 409 , done )
529
530
} )
530
531
531
- it ( 'should delete a new and empty container' , function ( done ) {
532
+ it ( 'should delete a new and empty container - with file.acl ' , function ( done ) {
532
533
server . delete ( '/delete-test-empty-container/' )
533
534
. end ( ( ) => {
534
535
server . get ( '/delete-test-empty-container/' )
@@ -541,6 +542,7 @@ describe('HTTP APIs', function () {
541
542
// Clean up after DELETE API tests
542
543
rm ( '/put-resource-1.ttl' )
543
544
rm ( '/delete-test-non-empty/' )
545
+ rm ( '/delete-test-empty-container/test.txt.acl' )
544
546
rm ( '/delete-test-empty-container/' )
545
547
} )
546
548
} )
0 commit comments