From 45044bdab74c969a9ca4b712625e0c3175b16787 Mon Sep 17 00:00:00 2001 From: Adam Hassick Date: Tue, 17 Mar 2020 11:05:03 -0400 Subject: fixed bug in make_server Change-Id: I4467d22dfa92282523bf65af641677f08842345b Signed-off-by: Adam Hassick --- src/dashboard/testing_utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/dashboard/testing_utils.py b/src/dashboard/testing_utils.py index 506e998..b7272ea 100644 --- a/src/dashboard/testing_utils.py +++ b/src/dashboard/testing_utils.py @@ -277,7 +277,7 @@ def make_os(installers=None, name="test OS"): def make_server(host_profile, lab, labid="test_host", name="test_host", - booked=False, working=True, config=None, template=None, + booked=False, working=True, config=None, bundle=None, model="Model 1", vendor="ACME"): return Server.objects.create( lab=lab, @@ -286,7 +286,6 @@ def make_server(host_profile, lab, labid="test_host", name="test_host", booked=booked, working=working, config=config, - template=template, bundle=bundle, model=model, vendor=vendor -- cgit 1.2.3-korg