diff options
author | Christian Schneider | 2023-07-19 14:28:45 +0200 |
---|---|---|
committer | Christian Schneider | 2023-07-19 14:28:45 +0200 |
commit | e89965c59ea1388c6c7c6ae16ad62540ccc4c935 (patch) | |
tree | c22672da1d37ac0ad1d089da804ad6535dc37c25 | |
parent | a873d972cd827197f5314346f17bddd6338c8e52 (diff) | |
download | itools-e89965c59ea1388c6c7c6ae16ad62540ccc4c935.tar.gz itools-e89965c59ea1388c6c7c6ae16ad62540ccc4c935.tar.bz2 itools-e89965c59ea1388c6c7c6ae16ad62540ccc4c935.zip |
Adapt test to new behaviour of always removing {}, even without values
-rwxr-xr-x | test/autoprepend.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/autoprepend.t b/test/autoprepend.t index beef5e0..287bdff 100755 --- a/test/autoprepend.t +++ b/test/autoprepend.t @@ -9,13 +9,13 @@ $GLOBALS['it_text']->statictext = [ is( T('foo'), - "bar {v1}", + "bar ", "simple T()" ); is( T('foo', 'en'), - "qux {v1}", + "qux ", "simple T() with language" ); |