~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_osutils.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-10-08 08:12:00 UTC
  • mfrom: (2858.2.5 remove-checks)
  • Revision ID: pqm@pqm.ubuntu.com-20071008081200-04a0byt5lo5tyft9
Remove old calls to safe_file_id and safe_revision_id (mbp)

Show diffs side-by-side

added added

removed removed

Lines of Context:
350
350
class TestSafeRevisionId(TestCase):
351
351
 
352
352
    def test_from_ascii_string(self):
 
353
        # this shouldn't give a warning because it's getting an ascii string
353
354
        self.assertEqual('foobar', osutils.safe_revision_id('foobar'))
354
355
 
355
356
    def test_from_unicode_string_ascii_contents(self):