~soren/nova/iptables-security-groups

« back to all changes in this revision

Viewing changes to nova/tests/objectstore_unittest.py

  • Committer: Jesse Andrews
  • Date: 2010-07-15 23:13:48 UTC
  • mto: This revision was merged to the branch mainline in revision 142.
  • Revision ID: jesse@gigantor.local-20100715231348-vml8qldrdofx79do
reorder imports spacing

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import shutil
24
24
import tempfile
25
25
 
26
 
 
27
 
 
28
26
from nova import flags
29
27
from nova import objectstore
30
28
from nova import test
31
29
from nova.auth import users
32
30
 
 
31
 
33
32
FLAGS = flags.FLAGS
34
33
 
35
 
 
36
34
oss_tempdir = tempfile.mkdtemp(prefix='test_oss-')
37
35
 
38
36