summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Baty <damien.baty@gmail.com>2012-03-06 17:48:18 +0100
committerDamien Baty <damien.baty@gmail.com>2012-03-06 17:48:18 +0100
commit1ac54fd36ea10e23a2aa884a2c30acc84025b23b (patch)
treeb00e22c8f535c15ae10943e460197a8fb8551762
parentca9f88da0aab4501ec05a9d9ac9a40e131a131dc (diff)
downloadpyramid-1ac54fd36ea10e23a2aa884a2c30acc84025b23b.tar.gz
pyramid-1ac54fd36ea10e23a2aa884a2c30acc84025b23b.tar.bz2
pyramid-1ac54fd36ea10e23a2aa884a2c30acc84025b23b.zip
Fixed typo: key (k) and value (v) were inverted.
-rw-r--r--pyramid/testing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/testing.py b/pyramid/testing.py
index 025730ac5..d32a7fe0b 100644
--- a/pyramid/testing.py
+++ b/pyramid/testing.py
@@ -515,7 +515,7 @@ class DummyTemplateRenderer(object):
if myval != v:
raise AssertionError(
'\nasserted value for %s: %r\nactual value: %r' % (
- v, k, myval))
+ k, v, myval))
return True
class DummyResource: