fixed a unit test so that it works for more PHP versions
authorFabien Potencier <fabien.potencier@gmail.com>
Tue, 26 Oct 2010 17:49:31 +0000 (19:49 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Tue, 26 Oct 2010 17:49:31 +0000 (19:49 +0200)
test/Twig/Tests/Fixtures/tests/constant.test

index 83d33f4..fb3d288 100644 (file)
@@ -1,7 +1,7 @@
 --TEST--
 "const" test
 --TEMPLATE--
-{{ 30719 is constant('E_ALL') ? 'ok' : 'no' }}
+{{ 8 is constant('E_NOTICE') ? 'ok' : 'no' }}
 {{ 'bar' is constant('Foo::BAR_NAME') ? 'ok' : 'no' }}
 {{ value is constant('Foo::BAR_NAME') ? 'ok' : 'no' }}
 --DATA--