diff --git a/libnetwork/firewall_linux_test.go b/libnetwork/firewall_linux_test.go index 4308da22e61b5..57c94f45e0807 100644 --- a/libnetwork/firewall_linux_test.go +++ b/libnetwork/firewall_linux_test.go @@ -27,10 +27,6 @@ func TestUserChain(t *testing.T) { iptables bool append bool // append other rules to FORWARD }{ - { - iptables: false, - append: false, - }, { iptables: true, append: false, @@ -39,6 +35,10 @@ func TestUserChain(t *testing.T) { iptables: true, append: true, }, + { + iptables: false, + append: false, + }, } for _, tc := range tests {