~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_hashcache.py

[merge] bzr.dev 1491

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
        # make a dummy bzr directory just to hold the cache
49
49
        os.mkdir('.bzr')
50
 
        hc = HashCache('.')
 
50
        hc = HashCache(u'.')
51
51
 
52
52
        file('foo', 'wb').write('hello')
53
53
        os.mkdir('subdir')
110
110
        hc.write()
111
111
        del hc
112
112
 
113
 
        hc = HashCache('.')
 
113
        hc = HashCache(u'.')
114
114
        hc.read()
115
115
 
116
116
        ##self.assertEquals(len(hc._cache), 2)