Fixed a typo.

- Legacy-Id: 6326
This commit is contained in:
Henrik Levkowetz 2013-09-30 21:00:12 +00:00
parent 87898cb006
commit 983785d63c

View file

@ -28,7 +28,7 @@ class ViewTestCase(TestCase):
resp = self.client.get('/meeting/83/agenda.txt')
# to capture new output (and check it for correctness)
fn = ""
if resp.content != agenda83.txt:
if resp.content != agenda83txt:
fn = "%s/meeting/tests/agenda-83-txt-output-out.txt" % BASE_DIR
out = open(fn, "w")
out.write(resp.content)