Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Carter committed Nov 11, 2020
1 parent cab11a4 commit 1510262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lister/ec2_vpnconnection.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func (l AWSEc2VpnConnection) List(cfg option.AWSetsConfig) (*resource.Group, err
//VpnConnectionIds: nil,
})
if err != nil {
return nil, fmt.Errorf("failed to get vpn connections: %w, err")
return nil, fmt.Errorf("failed to get vpn connections: %w", err)
}
for _, v := range res.VpnConnections {
r := resource.New(cfg, resource.Ec2VpnConnection, v.VpnConnectionId, v.VpnConnectionId, v)
Expand Down

0 comments on commit 1510262

Please sign in to comment.