fixed a stupid test
authorFabien Potencier <fabien.potencier@gmail.com>
Tue, 30 Oct 2012 17:12:52 +0000 (18:12 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Tue, 30 Oct 2012 17:12:52 +0000 (18:12 +0100)
test/Twig/Tests/Fixtures/expressions/bitwise.test

index 391119f..7b56b76 100644 (file)
@@ -4,11 +4,11 @@ Twig supports bitwise operations
 {{ 1 b-and 5 }}
 {{ 1 b-or 5 }}
 {{ 1 b-xor 5 }}
-{{ 1 b-and 1 and 1 }} == {{ band }}
+{{ (1 and 0 b-or 0) is sameas(1 and (0 b-or 0)) ? 'ok' : 'ko' }}
 --DATA--
-return array('band' => (1 & 1 and 1))
+return array()
 --EXPECT--
 1
 5
 4
-1 == 1
+ok