diff options
author | Adam Hassick <ahassick@iol.unh.edu> | 2020-03-17 11:05:03 -0400 |
---|---|---|
committer | Parker Berberian <pberberian@iol.unh.edu> | 2020-03-17 15:09:05 +0000 |
commit | 45044bdab74c969a9ca4b712625e0c3175b16787 (patch) | |
tree | f2c09109685e36a0be57b35a4326562c23c53480 /src/dashboard | |
parent | 287a9e199abf29c4872390e4ff15db5f87382e20 (diff) |
fixed bug in make_server
Change-Id: I4467d22dfa92282523bf65af641677f08842345b
Signed-off-by: Adam Hassick <ahassick@iol.unh.edu>
Diffstat (limited to 'src/dashboard')
-rw-r--r-- | src/dashboard/testing_utils.py | 3 |
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 |