/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_read_bundle.py

  • Committer: John Arbash Meinel
  • Date: 2007-04-23 19:23:14 UTC
  • mfrom: (2446 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2456.
  • Revision ID: john@arbash-meinel.com-20070423192314-y2x7sr7yupacqglk
[merge] bzr.dev 2446

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
        return wt
64
64
 
65
65
    def test_read_bundle_from_url(self):
66
 
        self._captureVar('NO_SMART_VFS', None)
 
66
        self._captureVar('BZR_NO_SMART_VFS', None)
67
67
        wt = self.create_test_bundle()
68
68
        if wt is None:
69
69
            return
75
75
    def test_read_fail(self):
76
76
        # Trying to read from a directory, or non-bundle file
77
77
        # should fail with NotABundle
78
 
        self._captureVar('NO_SMART_VFS', None)
 
78
        self._captureVar('BZR_NO_SMART_VFS', None)
79
79
        wt = self.create_test_bundle()
80
80
        if wt is None:
81
81
            return