~openstack-gd/nova/lp785816-joinedload

« back to all changes in this revision

Viewing changes to nova/tests/auth_unittest.py

  • Committer: Anne Gentle
  • Date: 2010-12-20 20:54:27 UTC
  • mfrom: (469 nova)
  • mto: This revision was merged to the branch mainline in revision 550.
  • Revision ID: anne@openstack.org-20101220205427-xtz19plbvxybqe9b
Minor spellchecking fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
335
335
        import nova.auth.fakeldap as fakeldap
336
336
        if FLAGS.flush_db:
337
337
            logging.info("Flushing datastore")
338
 
            try:
339
 
                r = fakeldap.Store.instance()
340
 
                r.flushdb()
341
 
            except:
342
 
                self.skip = True
 
338
            r = fakeldap.Store.instance()
 
339
            r.flushdb()
343
340
 
344
341
 
345
342
class AuthManagerDbTestCase(AuthManagerTestCase, test.TestCase):