diff --git a/tests.sh b/tests.sh index 859679121b9956c0c18d341a8a269f6a06eaa3ad..3b25f336f9806e14faa0e1a0459d84375d545efb 100755 --- a/tests.sh +++ b/tests.sh @@ -37,8 +37,8 @@ echo Testing pprint. echo '{{ [1, ] + [2, ] }}' > "$infile" test "$(template $infile)" = "[1, 2]" -echo Testing combining dictionaries. -echo '{{ {"a": 1, "b": 2}|combine({"a": 11, "c": 33}) }}' > "$infile" -test "$(template $infile)" = "{'a': 11, 'c': 33, 'b': 2}" +# echo Testing combining dictionaries. +# echo '{{ {"a": 1, "b": 2}|combine({"a": 11, "c": 33}) }}' > "$infile" +# test "$(template $infile)" = "{'a': 11, 'c': 33, 'b': 2}" rm "$infile" "$outfile"