From c121d0064bb7a7bd1a289ae29ceb2dee314c2d2f Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Mon, 5 Jan 2009 01:20:14 -0700 Subject: New Param: Added Param.get_label() method for a way to retrieve translated message at request time --- tests/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/util.py') diff --git a/tests/util.py b/tests/util.py index b0961f453..9ed10016d 100644 --- a/tests/util.py +++ b/tests/util.py @@ -287,7 +287,7 @@ class PluginTester(object): return (o, api, home) -class DummyUGettext(object): +class dummy_ugettext(object): __called = False def __init__(self): @@ -301,7 +301,7 @@ class DummyUGettext(object): return self.translation -class DummyUNGettext(object): +class dummy_ungettext(object): __called = False def __init__(self): -- cgit