summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
authorChuck Short <zulcss@ubuntu.com>2011-03-16 09:15:46 -0400
committerChuck Short <zulcss@ubuntu.com>2011-03-16 09:15:46 -0400
commit7fbf061666516705e74592c3660155e86d3da895 (patch)
treed78fea2a0a094c4e55488e2fb3a871ec162999d3 /nova
parentda7800d77dbdfd754f6326f37b2b9f566bc07ac4 (diff)
Fix up testsuite for lxc
Diffstat (limited to 'nova')
-rw-r--r--nova/tests/test_virt.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/tests/test_virt.py b/nova/tests/test_virt.py
index c149c9307..b3ca241cb 100644
--- a/nova/tests/test_virt.py
+++ b/nova/tests/test_virt.py
@@ -256,9 +256,9 @@ class LibvirtConnTestCase(test.TestCase):
'uml': ('uml:///system',
[(lambda t: t.find('.').get('type'), 'uml'),
(lambda t: t.find('./os/type').text, 'uml')]),
- 'lxc': ('lxc://',
+ 'lxc': ('lxc://;',
[(lambda t: t.find('.').get('type'), 'lxc'),
- (lambda t: t.find('./os/type').text, 'lxc')]),
+ (lambda t: t.find('./os/type').text, 'exe')]),
'xen': ('xen:///',
[(lambda t: t.find('.').get('type'), 'xen'),
(lambda t: t.find('./os/type').text, 'linux')]),