call site 20 for path.svnwc.write
path/svn/testing/test_wccommand.py - line 59
57
58
59
60
61
62
63
64
65
66
67
68
   def test_status_added(self):
       nf = self.root.join('newfile')
->     nf.write('hello')
       nf.add()
       try:
           s = nf.status()
           assert s.added
           assert not s.modified
           assert not s.prop_modified
           assert not s.replaced
       finally:
           nf.revert()