call site 2 for path.svnwc.status
path/svn/testing/test_wccommand.py - line 71
67
68
69
70
71
72
73
74
75
76
   def test_status_change(self):
       nf = self.root.join('samplefile')
       try:
           nf.write(nf.read() + 'change')
->         s = nf.status()
           assert not s.added
           assert s.modified
           assert not s.prop_modified
       finally:
           nf.revert()