Commit 70a105b3 by Chris Jerdonek

One less test failure: deleted the local test variable to prevent a test-run error.

Cherry-pick from: 'f8a5be7e'

Now at--

    Ran 159 tests in 0.738s
    FAILED (failures=18)
parent 9497c957
......@@ -71,6 +71,8 @@ for spec in specs:
for test in yaml.load(open(spec))['tests']:
test = buildTest(test, file_name)
setattr(MustacheSpec, test.__name__, test)
# Prevent this variable from being interpreted as another test.
del(test)
if __name__ == '__main__':
unittest.main()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment