@@ -13,7 +13,7 @@ public async Task ArchiveOutputPathIsExistingDirectory_CreatesFileWithRepository
13
13
string archiveOutputPath = TestSettings . TestArtifactsDirectory ;
14
14
string expectedCreatedFilePath = Path . Combine ( TestSettings . TestArtifactsDirectory , "repository.tar.gz" ) ;
15
15
16
- await CreateRegistryAndCallLoadAsync ( archiveOutputPath ) . ConfigureAwait ( false ) ;
16
+ await CreateRegistryAndCallLoadAsync ( archiveOutputPath ) ;
17
17
18
18
Assert . True ( File . Exists ( expectedCreatedFilePath ) ) ;
19
19
}
@@ -28,7 +28,7 @@ public async Task ArchiveOutputPathIsNonExistingDirectory_CreatesDirectoryAndFil
28
28
"nonexisting" + ( includeDirectorySeperatorAtTheEnd ? Path . DirectorySeparatorChar : "" ) ) ;
29
29
string expectedCreatedFilePath = Path . Combine ( archiveOutputPath , "repository.tar.gz" ) ;
30
30
31
- await CreateRegistryAndCallLoadAsync ( archiveOutputPath ) . ConfigureAwait ( false ) ;
31
+ await CreateRegistryAndCallLoadAsync ( archiveOutputPath ) ;
32
32
33
33
Assert . True ( File . Exists ( expectedCreatedFilePath ) ) ;
34
34
}
@@ -39,7 +39,7 @@ public async Task ArchiveOutputPathIsCustomFileNameInExistingDirectory_CreatesFi
39
39
string archiveOutputPath = Path . Combine ( TestSettings . TestArtifactsDirectory , "custom-name.withextension" ) ;
40
40
string expectedCreatedFilePath = archiveOutputPath ;
41
41
42
- await CreateRegistryAndCallLoadAsync ( archiveOutputPath ) . ConfigureAwait ( false ) ;
42
+ await CreateRegistryAndCallLoadAsync ( archiveOutputPath ) ;
43
43
44
44
Assert . True ( File . Exists ( expectedCreatedFilePath ) ) ;
45
45
}
@@ -50,7 +50,7 @@ public async Task ArchiveOutputPathIsCustomFileNameInNonExistingDirectory_Create
50
50
string archiveOutputPath = Path . Combine ( TestSettings . TestArtifactsDirectory , $ "nonexisting-directory{ Path . AltDirectorySeparatorChar } custom-name.withextension") ;
51
51
string expectedCreatedFilePath = archiveOutputPath ;
52
52
53
- await CreateRegistryAndCallLoadAsync ( archiveOutputPath ) . ConfigureAwait ( false ) ;
53
+ await CreateRegistryAndCallLoadAsync ( archiveOutputPath ) ;
54
54
55
55
Assert . True ( File . Exists ( expectedCreatedFilePath ) ) ;
56
56
}
@@ -68,6 +68,6 @@ await registry.LoadAsync(
68
68
async ( img , srcRef , destRef , stream , token ) =>
69
69
{
70
70
await Task . CompletedTask ;
71
- } ) . ConfigureAwait ( false ) ;
71
+ } ) ;
72
72
}
73
73
}
0 commit comments