Navigation Menu

Skip to content

Commit

Permalink
properly include twig in unit test setup
Browse files Browse the repository at this point in the history
  • Loading branch information
lsmith77 committed Dec 19, 2011
1 parent b31e984 commit 9e76e5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tests/autoload.php.dist
Expand Up @@ -11,7 +11,7 @@ $loader->registerNamespaces(array(
'Imagine' => array($vendorDir.'/imagine/lib'),
));
$loader->registerPrefixes(array(
'Twig_' => __DIR__.'/vendor/twig/lib',
'Twig_' => $vendorDir.'/twig/lib',
));
$loader->register();

Expand Down
2 changes: 1 addition & 1 deletion vendor/vendors.php
Expand Up @@ -11,7 +11,7 @@
$deps = array(
array('symfony', 'http://github.com/symfony/symfony', isset($_SERVER['SYMFONY_VERSION']) ? $_SERVER['SYMFONY_VERSION'] : 'origin/master'),
array('imagine', 'http://github.com/avalanche123/Imagine', 'v0.2.6'),
array('twig', 'http://github.com/fabpot/twig', 'origin/master'),
array('twig', 'http://github.com/fabpot/Twig', 'origin/master'),
);

foreach ($deps as $dep) {
Expand Down

0 comments on commit 9e76e5a

Please sign in to comment.