~1chb1n/charm-helpers/update-egg

« back to all changes in this revision

Viewing changes to tests/fetch/test_bzrurl.py

  • Committer: Ryan Beisner
  • Date: 2016-11-02 22:48:12 UTC
  • mfrom: (619.1.33 charm-helpers)
  • Revision ID: ryan.beisner@canonical.com-20161102224812-ho3m44jn3n5jjfld
Rebase

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
 
75
75
        for url in self.invalid_urls:
76
76
            with patch.dict('os.environ', {'CHARM_DIR': 'foo'}):
77
 
                self.assertRaises(UnhandledSource, self.fh.branch, url, dest_path)
 
77
                self.assertRaises(UnhandledSource, self.fh.branch,
 
78
                                  url, dest_path)
78
79
 
79
80
    @patch('charmhelpers.fetch.bzrurl.check_call')
80
81
    def test_branch_revno(self, check_call):