|
@@ -27,7 +27,7 @@ func containsNetwork(nws []types.NetworkResource, networkID string) bool {
|
|
|
// first network's ID as name.
|
|
|
//
|
|
|
// After successful creation, properties of all three networks is returned
|
|
|
-func createAmbiguousNetworks(t *testing.T, ctx context.Context, client dclient.APIClient) (string, string, string) { // nolint: golint
|
|
|
+func createAmbiguousNetworks(ctx context.Context, t *testing.T, client dclient.APIClient) (string, string, string) {
|
|
|
testNet := network.CreateNoError(ctx, t, client, "testNet")
|
|
|
idPrefixNet := network.CreateNoError(ctx, t, client, testNet[:12])
|
|
|
fullIDNet := network.CreateNoError(ctx, t, client, testNet)
|
|
@@ -70,7 +70,7 @@ func TestDockerNetworkDeletePreferID(t *testing.T) {
|
|
|
defer setupTest(t)()
|
|
|
client := testEnv.APIClient()
|
|
|
ctx := context.Background()
|
|
|
- testNet, idPrefixNet, fullIDNet := createAmbiguousNetworks(t, ctx, client)
|
|
|
+ testNet, idPrefixNet, fullIDNet := createAmbiguousNetworks(ctx, t, client)
|
|
|
|
|
|
// Delete the network using a prefix of the first network's ID as name.
|
|
|
// This should the network name with the id-prefix, not the original network.
|