[Zope3-checkins] CVS: Zope3/src/zope/products/demo/hellopackage/tests - test_hellomodule.py:1.2

Fred L. Drake, Jr. fred at zope.com
Thu Jan 15 10:29:57 EST 2004


Update of /cvs-repository/Zope3/src/zope/products/demo/hellopackage/tests
In directory cvs.zope.org:/tmp/cvs-serv2414

Modified Files:
	test_hellomodule.py 
Log Message:
update imports to reflect revised package structure


=== Zope3/src/zope/products/demo/hellopackage/tests/test_hellomodule.py 1.1 => 1.2 ===
--- Zope3/src/zope/products/demo/hellopackage/tests/test_hellomodule.py:1.1	Thu Jan 15 10:01:37 2004
+++ Zope3/src/zope/products/demo/hellopackage/tests/test_hellomodule.py	Thu Jan 15 10:29:57 2004
@@ -22,8 +22,8 @@
 class TestHelloModule(unittest.TestCase):
 
     def test_interface(self):
-        from zope.products.hellopackage.interfaces import IHello
-        from zope.products.hellopackage.hellomodule import HelloClass
+        from zope.products.demo.hellopackage.interfaces import IHello
+        from zope.products.demo.hellopackage.hellomodule import HelloClass
         verifyObject(IHello, HelloClass())
 
 




More information about the Zope3-Checkins mailing list