Skip to content

Commit 4a23756

Browse files
committed
chore: Rename ctor param
1 parent 3cc34f5 commit 4a23756

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Testcontainers/Configurations/AuthConfigs/DockerEndpointAuthenticationConfiguration.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ namespace DotNet.Testcontainers.Configurations
2828
/// Initializes a new instance of the <see cref="DockerEndpointAuthenticationConfiguration" /> struct.
2929
/// </summary>
3030
/// <param name="endpoint">The Docker API endpoint.</param>
31-
/// <param name="credentials">The Docker API authentication provider.</param>
32-
public DockerEndpointAuthenticationConfiguration(Uri endpoint, IAuthProvider credentials = null)
31+
/// <param name="authProvider">The Docker API authentication provider.</param>
32+
public DockerEndpointAuthenticationConfiguration(Uri endpoint, IAuthProvider authProvider = null)
3333
{
3434
Endpoint = endpoint;
35-
AuthProvider = credentials;
35+
AuthProvider = authProvider;
3636
}
3737

3838
/// <inheritdoc />

0 commit comments

Comments
 (0)