Made all unittests pass again.

This commit is contained in:
Griatch 2016-02-14 08:47:06 +01:00
parent 323a353ec3
commit 83570848d6
4 changed files with 4 additions and 4 deletions

View file

@ -425,7 +425,7 @@ class EvForm(object):
return unicode(ANSIString("\n").join([line for line in self.form]))
def _test():
"test evform"
"test evform. This is used by the unittest system."
form = EvForm("evennia.utils.evform_test")
# add data to each tagged form cell
@ -449,7 +449,6 @@ def _test():
# add the tables to the proper ids in the form
form.map(tables={"A": tableA,
"B": tableB})
# unicode is required since the example contains non-ascii characters
#print(unicode(form))
return form