Minor tweak to director_wstring_runme.py test

This commit is contained in:
William S Fulton 2020-01-28 18:11:07 +00:00
commit 7405bd6a88

View file

@ -9,8 +9,8 @@ class B(A):
def get_first(self):
return A.get_first(self) + u" world!"
def process_text(self, string):
self.smem = u"hello"
def process_text(self, s):
self.smem = s
b = B(u"hello")