~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/test_account.py

Move the '_save' parameter from '__init__' to 'from_bytes', fix fallouts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
class LaunchpadAccountTests(TestCaseInTempDir):
27
27
 
28
28
    def setup_config(self, text):
29
 
        my_config = config.GlobalConfig(_content=text)
 
29
        my_config = config.GlobalConfig.from_bytes(text)
30
30
        return my_config
31
31
 
32
32
    def test_get_lp_login_unconfigured(self):