From 1be2495906c63da78a9b8f8e5e789dce10e07e3b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 30 Oct 2012 17:46:49 +0100 Subject: [PATCH] fixed broken test --- test/Twig/Tests/Fixtures/expressions/bitwise.test | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Twig/Tests/Fixtures/expressions/bitwise.test b/test/Twig/Tests/Fixtures/expressions/bitwise.test index 369d48a..391119f 100644 --- a/test/Twig/Tests/Fixtures/expressions/bitwise.test +++ b/test/Twig/Tests/Fixtures/expressions/bitwise.test @@ -4,9 +4,9 @@ Twig supports bitwise operations {{ 1 b-and 5 }} {{ 1 b-or 5 }} {{ 1 b-xor 5 }} -{{ 1 b-and 1 + 1 }} == {{ band }} +{{ 1 b-and 1 and 1 }} == {{ band }} --DATA-- -return array('band' => (1 & 1 + 1)) +return array('band' => (1 & 1 and 1)) --EXPECT-- 1 5 -- 1.7.2.5