Fix python3 unit tests

This commit is contained in:
Stuart D. Gathman
2018-12-23 23:38:15 -05:00
parent 4e8fda517c
commit d30918aca7
3 changed files with 7 additions and 10 deletions
+1 -4
View File
@@ -63,10 +63,7 @@ class TestBase(object):
syms = self._symlist[stage]
if syms is not None and name not in syms:
return None
r = self._macros.get(name,None)
if r is not None:
return r.decode()
return r
return self._macros.get(name,None)
def replacebody(self,chunk):
if self._body: