~openstack-charm-sync/charms/trusty/ceilometer-agent/next

« back to all changes in this revision

Viewing changes to tests/019-basic-trusty-mitaka

  • Committer: James Page
  • Date: 2016-01-19 14:31:37 UTC
  • mfrom: (74.1.1 trunk)
  • Revision ID: james.page@ubuntu.com-20160119143137-ds9r1fd6hwwyz7uo
Fix liberty/mitaka typo from previous test definition update batch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
2
 
3
 
"""Amulet tests on a basic ceilometer-agent deployment on trusty-liberty."""
 
3
"""Amulet tests on a basic ceilometer-agent deployment on trusty-mitaka."""
4
4
 
5
5
from basic_deployment import CeiloAgentBasicDeployment
6
6
 
7
7
if __name__ == '__main__':
8
8
    deployment = CeiloAgentBasicDeployment(series='trusty',
9
 
                                           openstack='cloud:trusty-liberty',
10
 
                                           source='cloud:trusty-updates/liberty')
 
9
                                           openstack='cloud:trusty-mitaka',
 
10
                                           source='cloud:trusty-updates/mitaka')
11
11
    deployment.run_tests()