@@ -512,7 +512,8 @@ describe('HTTP APIs', function () {
512
512
// Ensure all these are finished before running tests
513
513
return Promise . all ( [
514
514
rm ( '/false-file-48484848' ) ,
515
- createTestContainer ( 'delete-test-empty-container' ) ,
515
+ // createTestContainer('delete-test-empty-container'),
516
+ createTestResource ( '/delete-test-empty-container/test.txt.acl' ) ,
516
517
createTestResource ( '/put-resource-1.ttl' ) ,
517
518
createTestResource ( '/delete-test-non-empty/test.ttl' )
518
519
] )
@@ -534,7 +535,7 @@ describe('HTTP APIs', function () {
534
535
. expect ( 409 , done )
535
536
} )
536
537
537
- it ( 'should delete a new and empty container' , function ( done ) {
538
+ it ( 'should delete a new and empty container - with file.acl ' , function ( done ) {
538
539
server . delete ( '/delete-test-empty-container/' )
539
540
. end ( ( ) => {
540
541
server . get ( '/delete-test-empty-container/' )
@@ -547,6 +548,7 @@ describe('HTTP APIs', function () {
547
548
// Clean up after DELETE API tests
548
549
rm ( '/put-resource-1.ttl' )
549
550
rm ( '/delete-test-non-empty/' )
551
+ rm ( '/delete-test-empty-container/test.txt.acl' )
550
552
rm ( '/delete-test-empty-container/' )
551
553
} )
552
554
} )
0 commit comments