diff options
Diffstat (limited to 'tests/autoprepend.t')
-rwxr-xr-x | tests/autoprepend.t | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/autoprepend.t b/tests/autoprepend.t index e91996f..8f4f52f 100755 --- a/tests/autoprepend.t +++ b/tests/autoprepend.t @@ -12,29 +12,29 @@ $GLOBALS['it_text']->statictext = array( is( T('foo'), "bar {v1}", - "simple T()", + "simple T()" ); is( T('foo', 'en'), "qux {v1}", - "simple T() with language", + "simple T() with language" ); is( - T('foo', 'v1' => "gna<bber"), + T('foo', array('v1' => "gna<bber")), "bar gna<bber", - "T() with quoted values", + "T() with quoted values" ); is( - T('foo', 'v1' => "gna<bber", 'en'), + T('foo', array('v1' => "gna<bber"), 'en'), "qux gna<bber", - "T() with with quoted values and language", + "T() with with quoted values and language" ); is( - T('foo', 'en', 'v1' => "gna<bber"), + T('foo', 'en', array('v1' => "gna<bber")), "qux gna<bber", - "T() with with language and quoted values", + "T() with with language and quoted values" ); |