From 44c6cb0a9e136fd9437f81a6c5eda1a3483e54f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Mon, 3 Mar 2014 22:48:23 +0100 Subject: [PATCH] Fixed tests again (broken in commit 3343ebec) --- taiga/projects/tests/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/taiga/projects/tests/__init__.py b/taiga/projects/tests/__init__.py index 4fcb4474..ed8c9719 100644 --- a/taiga/projects/tests/__init__.py +++ b/taiga/projects/tests/__init__.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- from django.db.models.loading import get_model +from taiga.base.domains import get_active_domain def create_project(id, owner, save=True): @@ -10,7 +11,8 @@ def create_project(id, owner, save=True): name="Project {0}".format(id), description="This is a test project", owner=owner, - total_story_points=id + total_story_points=id, + domain=get_active_domain() ) if save: