diff options
Diffstat (limited to 'tests/configuration/simple.toml')
-rw-r--r-- | tests/configuration/simple.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/configuration/simple.toml b/tests/configuration/simple.toml index d41383a..9ca591a 100644 --- a/tests/configuration/simple.toml +++ b/tests/configuration/simple.toml @@ -8,13 +8,13 @@ tab = 1 [externals.target] extern_key = "\"_B\"" # Here, the values A & B are considered as column, and not litteral -intern_key = "function(:A, :B)" +intern_key = "concat(:A, :B)" allow_missing = true file = "" tab = 1 [sheet] columns = [ - "function(:target.A, :B, 'free\\' text')", + "if(:target.A, :B, 'free\\' text')", "counter([:target.A],[:target.A])" ] |