~andrewjbeach/juju-ci-tools/get-juju-dict

« back to all changes in this revision

Viewing changes to assess_storage.py

  • Committer: Martin
  • Date: 2016-06-27 11:41:04 UTC
  • mto: This revision was merged to the branch mainline in revision 1486.
  • Revision ID: gzlist@googlemail.com-20160627114104-9efn7957yms9522p
Switch all imports of local_charm_path to using jujucharm over utility

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
from deploy_stack import (
14
14
    BootstrapManager,
15
15
)
16
 
from jujucharm import Charm
 
16
from jujucharm import (
 
17
    Charm,
 
18
    local_charm_path,
 
19
)
17
20
from utility import (
18
21
    add_basic_testing_arguments,
19
22
    configure_logging,
20
23
    JujuAssertionError,
21
 
    local_charm_path,
22
24
    temp_dir,
23
25
)
24
26