aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Hassick <ahassick@iol.unh.edu>2020-03-17 11:05:03 -0400
committerParker Berberian <pberberian@iol.unh.edu>2020-03-17 15:09:05 +0000
commit45044bdab74c969a9ca4b712625e0c3175b16787 (patch)
treef2c09109685e36a0be57b35a4326562c23c53480
parent287a9e199abf29c4872390e4ff15db5f87382e20 (diff)
fixed bug in make_server
Change-Id: I4467d22dfa92282523bf65af641677f08842345b Signed-off-by: Adam Hassick <ahassick@iol.unh.edu>
-rw-r--r--src/dashboard/testing_utils.py3
1 files changed, 1 insertions, 2 deletions
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