Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
1cho1ce committed Oct 10, 2023
1 parent 75503a1 commit 751518b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qubes/tests/api_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,13 +293,13 @@ def test_029_vm_property_get_list_default(self):
b'admin.vm.property.GetDefault',
b'test-vm1',
b'dns6')
self.assertEqual(value, 'default=True type=str ')
self.assertEqual(value, 'type=str ')
self.vm.features['supported-feature.ipv6dns'] = '1'
value = self.call_mgmt_func(
b'admin.vm.property.Get',
b'admin.vm.property.GetDefault',
b'test-vm1',
b'dns6')
self.assertEqual(value, 'default=True type=str fd09:24ef:4179::a8b:1 fd09:24ef:4179::a8b:2')
self.assertEqual(value, 'type=str fd09:24ef:4179::a8b:1 fd09:24ef:4179::a8b:2')

def test_030_vm_property_set_vm(self):
netvm = self.app.add_new_vm('AppVM', label='red', name='test-net',
Expand Down

0 comments on commit 751518b

Please sign in to comment.