Merge "fix incorrect pathname"
This commit is contained in:
commit
f1f914b687
@ -37,8 +37,10 @@ class ConfigurationTest(testtools.TestCase):
|
||||
self.assertTrue(cfg.CONF.allow_bulk)
|
||||
self.assertEqual(5, cfg.CONF.max_dns_nameservers)
|
||||
self.assertEqual(20, cfg.CONF.max_subnet_host_routes)
|
||||
self.assertEqual(os.path.abspath('../../..'),
|
||||
cfg.CONF.state_path)
|
||||
relative_dir = os.path.join(os.path.dirname(__file__),
|
||||
'..', '..', '..')
|
||||
absolute_dir = os.path.abspath(relative_dir)
|
||||
self.assertEqual(absolute_dir, cfg.CONF.state_path)
|
||||
self.assertEqual(120, cfg.CONF.dhcp_lease_duration)
|
||||
self.assertFalse(cfg.CONF.allow_overlapping_ips)
|
||||
self.assertEqual('quantum', cfg.CONF.control_exchange)
|
||||
|
Loading…
x
Reference in New Issue
Block a user