From 6b43a7c38cd3c848ac0987d79a7204d64529f8c6 Mon Sep 17 00:00:00 2001 From: Őry Máté Date: Mon, 11 Nov 2013 13:15:39 +0100 Subject: [PATCH] vm: update tests with current class names --- circle/vm/tests/test_models.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/circle/vm/tests/test_models.py b/circle/vm/tests/test_models.py index ca14d68..a05d595 100644 --- a/circle/vm/tests/test_models.py +++ b/circle/vm/tests/test_models.py @@ -1,8 +1,9 @@ from django.test import TestCase -from .models import Template +from ..models import InstanceTemplate class TemplateTestCase(TestCase): def test_template_creation(self): - template = Template(name='My first template', - access_method='ssh', ) # TODO add images & net + template = InstanceTemplate(name='My first template', + access_method='ssh', ) + # TODO add images & net -- libgit2 0.26.0