aboutsummaryrefslogtreecommitdiffstats
path: root/src/dashboard/testing_utils.py
diff options
context:
space:
mode:
authorAdam Hassick <ahassick@iol.unh.edu>2020-03-16 11:20:03 -0400
committerParker Berberian <pberberian@iol.unh.edu>2020-03-16 19:50:45 +0000
commitc8998d426cbf12afb2d2e68059e0969388b50c95 (patch)
tree5bff1d1e46705e9a838355433a61abae9b984a7a /src/dashboard/testing_utils.py
parent3e900016144770b58a9f6ace84600560a50c2085 (diff)
Test resource templates now use the same lab as the image generated alongside it.
Signed-off-by: Adam Hassick <ahassick@iol.unh.edu> Change-Id: I22ce80b4d162dd31dc3bd2ff2bd7ee30d474a0dd (cherry picked from commit 064f145f218385a6401fa6be2ccbbc462e915c26)
Diffstat (limited to 'src/dashboard/testing_utils.py')
-rw-r--r--src/dashboard/testing_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dashboard/testing_utils.py b/src/dashboard/testing_utils.py
index 01bb9c2..506e998 100644
--- a/src/dashboard/testing_utils.py
+++ b/src/dashboard/testing_utils.py
@@ -122,7 +122,7 @@ def make_resource_config(template, profile=None, image=None):
profile = make_resource_profile(lab=template.lab)
if image is None:
- image = make_image(profile)
+ image = make_image(profile, lab=template.lab)
return ResourceConfiguration.objects.create(profile=profile, image=image, template=template)