From c49120218eeee64297f5eedbf0efc42d5c498758 Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Wed, 12 Dec 2018 14:39:39 +1300 Subject: [PATCH] fix tests --- subiquity/ui/views/tests/test_identity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subiquity/ui/views/tests/test_identity.py b/subiquity/ui/views/tests/test_identity.py index 380d3cfc..f0a23780 100644 --- a/subiquity/ui/views/tests/test_identity.py +++ b/subiquity/ui/views/tests/test_identity.py @@ -24,7 +24,7 @@ class IdentityViewTests(unittest.TestCase): model = mock.create_autospec(spec=IdentityModel) controller = mock.create_autospec(spec=IdentityController) controller.signal = mock.create_autospec(spec=Signal) - return IdentityView(model, controller, {}) + return IdentityView(model, controller) def test_initial_focus(self): view = self.make_view()