call site 1 for path.svnwc.proplist
path/svn/testing/test_wccommand.py - line 168
159
160
161
162
163
164
165
166
167
168
169
170
171
   def test_properties(self):
       try:
           self.root.propset('gaga', 'this')
           assert self.root.propget('gaga') == 'this'
           # Comparing just the file names, because paths are unpredictable
           # on Windows. (long vs. 8.3 paths)
           assert self.root.basename in [item.basename for item in 
                                       self.root.status().prop_modified]
           assert 'gaga' in self.root.proplist()
->         assert self.root.proplist()['gaga'] == 'this'
   
       finally:
           self.root.propdel('gaga')