~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_selftest.py

  • Committer: Michael Hudson
  • Date: 2009-11-24 02:23:01 UTC
  • mto: This revision was merged to the branch mainline in revision 4822.
  • Revision ID: michael.hudson@canonical.com-20091124022301-hgxunly9c98g4gly
NEWS, comment in test

Show diffs side-by-side

added added

removed removed

Lines of Context:
518
518
 
519
519
    def test_BZR_HOME_and_HOME_are_bytestrings(self):
520
520
        """The $BZR_HOME and $HOME environment variables should not be unicode.
 
521
 
 
522
        See https://bugs.launchpad.net/bzr/+bug/464174.
521
523
        """
522
524
        self.assertIsInstance(os.environ['BZR_HOME'], str)
523
525
        self.assertIsInstance(os.environ['HOME'], str)