From 1ac54fd36ea10e23a2aa884a2c30acc84025b23b Mon Sep 17 00:00:00 2001 From: Damien Baty Date: Tue, 6 Mar 2012 17:48:18 +0100 Subject: Fixed typo: key (k) and value (v) were inverted. --- pyramid/testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v1.2.3