Commit 3caf64c8 by Chris Jerdonek

Got the spec tests working again (keyword argument loader -> partials).

parent 8e9e3901
......@@ -46,8 +46,9 @@ def buildTest(testData, spec_filename):
expected = testData['expected']
data = testData['data']
renderer = Renderer(loader=partials)
actual = renderer.render(template, data).encode('utf-8')
renderer = Renderer(partials=partials)
actual = renderer.render(template, data)
actual = actual.encode('utf-8')
message = """%s
......
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