Browse Source

Integration: remove "experimental" option for IPVLAN test-daemons

IPVLAN no longer is experimental since 3ab093d5670e8d59f6ae0c4604b8fcabf1582854,
so there's no need to set this option.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit dae9bac6757af3027b06a983b8448ffa962cc071)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 6 years ago
parent
commit
0c8bc0b57a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      integration/network/ipvlan/ipvlan_test.go

+ 2 - 2
integration/network/ipvlan/ipvlan_test.go

@@ -25,7 +25,7 @@ func TestDockerNetworkIpvlanPersistance(t *testing.T) {
 	skip.If(t, testEnv.IsRemoteDaemon)
 	skip.If(t, !ipvlanKernelSupport(t), "Kernel doesn't support ipvlan")
 
-	d := daemon.New(t, daemon.WithExperimental)
+	d := daemon.New(t)
 	d.StartWithBusybox(t)
 	defer d.Stop(t)
 
@@ -85,7 +85,7 @@ func TestDockerNetworkIpvlan(t *testing.T) {
 			test: testIpvlanAddressing,
 		},
 	} {
-		d := daemon.New(t, daemon.WithExperimental)
+		d := daemon.New(t)
 		d.StartWithBusybox(t)
 		c := d.NewClientT(t)