/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_selftest.py

  • Committer: Michael Hudson
  • Date: 2009-11-24 02:25:23 UTC
  • mto: This revision was merged to the branch mainline in revision 4822.
  • Revision ID: michael.hudson@canonical.com-20091124022523-0pism3bgkg0ip73t
final tweak

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
521
 
522
 
        See https://bugs.launchpad.net/bzr/+bug/464174.
 
522
        See https://bugs.launchpad.net/bzr/+bug/464174
523
523
        """
524
524
        self.assertIsInstance(os.environ['BZR_HOME'], str)
525
525
        self.assertIsInstance(os.environ['HOME'], str)