~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_config.py

  • Committer: Aaron Bentley
  • Date: 2006-08-06 23:35:09 UTC
  • mfrom: (1861.4.3 bzr.email)
  • mto: This revision was merged to the branch mainline in revision 1908.
  • Revision ID: aaron.bentley@utoronto.ca-20060806233509-f15a1e9dffa2ecc0
Moy: change BZREMAIL to BZR_EMAIL

Show diffs side-by-side

added added

removed removed

Lines of Context:
750
750
        my_config.branch.control_files.email = "John"
751
751
        self.assertEqual("John", my_config._get_user_id())
752
752
 
753
 
    def test_BZREMAIL_OVERRIDES(self):
754
 
        os.environ['BZREMAIL'] = "Robert Collins <robertc@example.org>"
 
753
    def test_BZR_EMAIL_OVERRIDES(self):
 
754
        os.environ['BZR_EMAIL'] = "Robert Collins <robertc@example.org>"
755
755
        branch = FakeBranch()
756
756
        my_config = config.BranchConfig(branch)
757
757
        self.assertEqual("Robert Collins <robertc@example.org>",