[Erp5-report] r11140 - /erp5/trunk/products/ERP5Type/tests/testCache.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Tue Nov 7 09:08:08 CET 2006
Author: ivan
Date: Tue Nov 7 09:08:01 2006
New Revision: 11140
URL: http://svn.erp5.org?rev=11140&view=rev
Log:
Fixed wrong import path for cache tests (unittests)
Modified:
erp5/trunk/products/ERP5Type/tests/testCache.py
Modified: erp5/trunk/products/ERP5Type/tests/testCache.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Type/tests/testCache.py?rev=11140&r1=11139&r2=11140&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Type/tests/testCache.py (original)
+++ erp5/trunk/products/ERP5Type/tests/testCache.py Tue Nov 7 09:08:01 2006
@@ -30,10 +30,10 @@
import unittest
import time
import base64, md5
-from ERP5Cache.CachePlugins.RamCache import RamCache
-from ERP5Cache.CachePlugins.DistributedRamCache import DistributedRamCache
-from ERP5Cache.CachePlugins.SQLCache import SQLCache
-from ERP5Cache.CachePlugins.BaseCache import CacheEntry
+from ERP5Type.CachePlugins.RamCache import RamCache
+from ERP5Type.CachePlugins.DistributedRamCache import DistributedRamCache
+from ERP5Type.CachePlugins.SQLCache import SQLCache
+from ERP5Type.CachePlugins.BaseCache import CacheEntry
class Foo:
More information about the Erp5-report
mailing list