Skip to content
Snippets Groups Projects
Commit 87f54a0b authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Update the tests to use the correct paths

parent 4a5f060a
No related branches found
No related tags found
No related merge requests found
...@@ -2,8 +2,8 @@ from django.forms import Form ...@@ -2,8 +2,8 @@ from django.forms import Form
import factory import factory
import wagtail_factories import wagtail_factories
from opentech.apply.models import ApplicationForm, FundType, FundForm from opentech.apply.funds.models import ApplicationForm, FundType, FundForm
from opentech.apply.workflow import Action, Phase, Stage, Workflow from opentech.apply.funds.workflow import Action, Phase, Stage, Workflow
class ListSubFactory(factory.SubFactory): class ListSubFactory(factory.SubFactory):
......
...@@ -2,7 +2,7 @@ from django.test import TestCase ...@@ -2,7 +2,7 @@ from django.test import TestCase
import factory import factory
from opentech.apply.models import FundType from opentech.apply.funds.models import FundType
from .factories import ApplicationFormFactory, FundTypeFactory from .factories import ApplicationFormFactory, FundTypeFactory
......
from django.test import TestCase from django.test import TestCase
from opentech.apply.workflow import SingleStage from opentech.apply.funds.workflow import SingleStage
from .factories import FundTypeFactory from .factories import FundTypeFactory
......
from django.test import SimpleTestCase from django.test import SimpleTestCase
from django.forms import Form from django.forms import Form
from opentech.apply.workflow import ( from opentech.apply.funds.workflow import (
Action, Action,
ChangePhaseAction, ChangePhaseAction,
NextPhaseAction, NextPhaseAction,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment