Skip to content

Commit

Permalink
Try to load AuthBucket\Bundle\OAuth2Bundle\Tests manually.
Browse files Browse the repository at this point in the history
  • Loading branch information
hswong3i committed Jul 15, 2015
1 parent e1d6953 commit c886431
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/bootstrap_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
passthru(__DIR__.'/console --env=test -q doctrine:schema:create');
passthru(__DIR__.'/console --env=test -q doctrine:fixtures:load -n');

require __DIR__.'/bootstrap.php.cache';
$loader = require __DIR__.'/bootstrap.php.cache';
$loader->add('AuthBucket\Bundle\OAuth2Bundle\Tests', __DIR__.'/../tests');
4 changes: 2 additions & 2 deletions app/check.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ function echo_block($style, $title, $message)
echo PHP_EOL.PHP_EOL;

echo_style($style, str_repeat(' ', $width).PHP_EOL);
echo_style($style, str_pad(' ['.$title.']', $width, ' ', STR_PAD_RIGHT).PHP_EOL);
echo_style($style, str_pad($message, $width, ' ', STR_PAD_RIGHT).PHP_EOL);
echo_style($style, str_pad(' ['.$title.']', $width, ' ', STR_PAD_RIGHT).PHP_EOL);
echo_style($style, str_pad($message, $width, ' ', STR_PAD_RIGHT).PHP_EOL);
echo_style($style, str_repeat(' ', $width).PHP_EOL);
}

Expand Down

0 comments on commit c886431

Please sign in to comment.