call site 10 for path.svnwc.join
path/svn/testing/test_wccommand.py - line 51
43
44
45
46
47
48
49
50
51
52
53
   def test_status_attributes_simple(self):
       def assert_nochange(p):
           s = p.status()
           assert not s.modified
           assert not s.prop_modified
           assert not s.added
           assert not s.deleted
   
->     dpath = self.root.join('sampledir')
       assert_nochange(self.root.join('sampledir'))
       assert_nochange(self.root.join('samplefile'))