[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Workflow/tests - DummyWorkflowProcessInstance.py:1.1.2.2

Vincenzo Di Somma e.disomma@icube.it
Wed, 4 Dec 2002 11:53:19 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/Workflow/tests
In directory cvs.zope.org:/tmp/cvs-serv12811/tests

Modified Files:
      Tag: sprintathon-wf-branch
	DummyWorkflowProcessInstance.py 
Log Message:
useful interfaces cleaned and unuseful interfaces deleted

=== Zope3/lib/python/Zope/App/Workflow/tests/DummyWorkflowProcessInstance.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/lib/python/Zope/App/Workflow/tests/DummyWorkflowProcessInstance.py:1.1.2.1	Wed Dec  4 06:15:28 2002
+++ Zope3/lib/python/Zope/App/Workflow/tests/DummyWorkflowProcessInstance.py	Wed Dec  4 11:53:18 2002
@@ -13,12 +13,12 @@
 ##############################################################################
 
 from Zope.App.Workflow.IWorkflowProcessInstance import IWorkflowProcessInstance
-from Zope.App.Workflow.IWorkflowEngine import IWorkflowEngine
+from Zope.App.Workflow.IWorkflowProcessInstanceControl import IWorkflowProcessInstanceControl
 
 
 class DummyWorkflowProcessInstance:
 
-    __implements__ =  (IWorkflowProcessInstance, IWorkflowEngine)
+    __implements__ = (IWorkflowProcessInstance, IWorkflowProcessInstanceControl)
 
     status = None
 
@@ -43,7 +43,7 @@
 
     ############################################################
     # Implementation methods for interface
-    # Zope.App.Workflow.IWorkflowProcessInstance.IWorkflowEngine
+    # Zope.App.Workflow.IWorkflowProcessInstanceControl.IWorkflowProcessInstanceControl
 
     def start(self):
         pass