call site 1 for path.svnwc.revert
path/svn/testing/test_wccommand.py - line 62
53
54
55
56
57
58
59
60
61
62
   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()