~1chb1n/charms/trusty/ceph-radosgw/next.1601-test-update2

« back to all changes in this revision

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

  • Committer: Ryan Beisner
  • Date: 2016-01-19 12:47:42 UTC
  • Revision ID: ryan.beisner@canonical.com-20160119124742-lrwo4etqf1s5gjgd
Fix typo in mitaka amulet test definition

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 ceph-radosgw deployment on trusty-liberty."""
 
3
"""Amulet tests on a basic ceph-radosgw deployment on trusty-mitaka."""
4
4
 
5
5
from basic_deployment import CephRadosGwBasicDeployment
6
6
 
7
7
if __name__ == '__main__':
8
8
    deployment = CephRadosGwBasicDeployment(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()