File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Rdmp.Core.Tests/DataExport/DataRelease Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2121using Tests . Common . Scenarios ;
2222namespace Rdmp . Core . Tests . DataExport . DataRelease ;
2323
24- public sealed class S3BucketReleaseDestinationTests : TestsRequiringAnExtractionConfiguration
24+ public class S3BucketReleaseDestinationTests : TestsRequiringAnExtractionConfiguration
2525{
2626 private const string Username = "minioadmin" ;
2727 private const string Password = "minioadmin" ;
@@ -65,15 +65,15 @@ private static void DeleteBucket(string name)
6565 _minioClient . RemoveBucketAsync ( rbArgs ) . Wait ( ) ;
6666 }
6767
68- private static List < Minio . DataModel . Item > GetObjects ( string bucketName )
68+ private List < Minio . DataModel . Item > GetObjects ( string bucketName )
6969 {
7070 var loArgs = new ListObjectsArgs ( ) . WithBucket ( bucketName ) ;
7171 var x = _minioClient . ListObjectsEnumAsync ( loArgs ) ;
7272 var results = ToListAsync ( x ) . Result ;
7373 return results ;
7474 }
7575
76- public static async Task < List < T > > ToListAsync < T > ( this IAsyncEnumerable < T > items ,
76+ private async Task < List < T > > ToListAsync < T > ( IAsyncEnumerable < T > items ,
7777 CancellationToken cancellationToken = default )
7878 {
7979 var results = new List < T > ( ) ;
You can’t perform that action at this time.
0 commit comments