~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_cat.py

  • Committer: Robert Collins
  • Date: 2010-04-08 04:34:03 UTC
  • mfrom: (5138 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5139.
  • Revision ID: robertc@robertcollins.net-20100408043403-56z0d07vdqrx7f3t
Update bugfix for 528114 to trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
import os
23
23
 
24
24
from bzrlib import tests
 
25
from bzrlib.transport import memory
25
26
 
26
27
 
27
28
class TestCat(tests.TestCaseWithTransport):
195
196
        self.assertEqual('contents of README\n', out)
196
197
 
197
198
    def test_cat_nonexistent_branch(self):
198
 
        self.vfs_transport_factory = tests.MemoryServer
 
199
        self.vfs_transport_factory = memory.MemoryServer
199
200
        self.run_bzr_error(['^bzr: ERROR: Not a branch'],
200
201
                           ['cat', self.get_url()])