call site 7 for path.svnwc.status
path/svn/testing/test_wccommand.py - line 121
117
118
119
120
121
122
123
124
125
126
127
128
   def test_status_update(self):
       r = self.root
       try:
           r.update(rev=1)
->         s = r.status(updates=1, rec=1)
           # Comparing just the file names, because paths are unpredictable
           # on Windows. (long vs. 8.3 paths)
           assert r.join('anotherfile').basename in [item.basename for 
                                                   item in s.update_available]
           #assert len(s.update_available) == 1
       finally:
           r.update()