You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by pq...@apache.org on 2010/02/11 02:23:23 UTC

svn commit: r908783 - /incubator/libcloud/trunk/test/test_voxel.py

Author: pquerna
Date: Thu Feb 11 01:23:17 2010
New Revision: 908783

URL: http://svn.apache.org/viewvc?rev=908783&view=rev
Log:
fix import of secrets

Modified:
    incubator/libcloud/trunk/test/test_voxel.py

Modified: incubator/libcloud/trunk/test/test_voxel.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/test/test_voxel.py?rev=908783&r1=908782&r2=908783&view=diff
==============================================================================
--- incubator/libcloud/trunk/test/test_voxel.py (original)
+++ incubator/libcloud/trunk/test/test_voxel.py Thu Feb 11 01:23:17 2010
@@ -21,7 +21,7 @@
 import httplib
 
 from test import MockHttp, multipleresponse, TestCaseMixin
-from secrets import VOXEL_USER, VOXEL_SECRET
+from secrets import VOXEL_KEY, VOXEL_SECRET
 from xml.etree import ElementTree as ET
 
 class VoxelTest(unittest.TestCase):