~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to nova/tests/test_virt_drivers.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-01-20 11:54:15 UTC
  • mto: This revision was merged to the branch mainline in revision 62.
  • Revision ID: package-import@ubuntu.com-20120120115415-h2ujma9o536o1ut6
Tags: upstream-2012.1~e3~20120120.12170
ImportĀ upstreamĀ versionĀ 2012.1~e3~20120120.12170

Show diffs side-by-side

added added

removed removed

Lines of Context:
294
294
    def test_get_vnc_console(self):
295
295
        instance_ref, network_info = self._get_running_instance()
296
296
        vnc_console = self.connection.get_vnc_console(instance_ref)
297
 
        self.assertIn('token', vnc_console)
 
297
        self.assertIn('internal_access_path', vnc_console)
298
298
        self.assertIn('host', vnc_console)
299
299
        self.assertIn('port', vnc_console)
300
300