diff options
| author | Maciej Borzecki <maciej.zenon.borzecki@canonical.com> | 2021-09-07 09:28:36 +0200 |
|---|---|---|
| committer | Maciej Borzecki <maciej.zenon.borzecki@canonical.com> | 2021-09-07 09:28:36 +0200 |
| commit | d816a3a9ea033db7c88847541b5e58b3b3749a4f (patch) | |
| tree | 71a16107ae972ed7f77b5182a4f57293056d6512 | |
| parent | 16441ec521d89d102531f077e8eb3fcbbac284da (diff) | |
overlord/ifacestate: fix arguments in unit tests
The #10728 PR landed after we merged unused arguments cleanups and caused some conflicts with current master. Signed-off-by: Maciej Borzecki <maciej.zenon.borzecki@canonical.com>
| -rw-r--r-- | overlord/ifacestate/ifacestate_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/overlord/ifacestate/ifacestate_test.go b/overlord/ifacestate/ifacestate_test.go index 49a8b495cd..2412706add 100644 --- a/overlord/ifacestate/ifacestate_test.go +++ b/overlord/ifacestate/ifacestate_test.go @@ -8839,7 +8839,7 @@ func (s *interfaceManagerSuite) TestResolveDisconnectMatrixTypical(c *C) { func (s *interfaceManagerSuite) TestConnectSetsUpSecurityFails(c *C) { s.MockModel(c, nil) - s.mockIfaces(c, &ifacetest.TestInterface{InterfaceName: "test"}) + s.mockIfaces(&ifacetest.TestInterface{InterfaceName: "test"}) s.mockSnap(c, consumerYaml) s.mockSnap(c, producerYaml) |
