From ee7955268ecb552111dde06f9a11a0a3ecc24e41 Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev Date: Thu, 15 Nov 2018 17:53:18 +0200 Subject: [PATCH] Enable TypeHintsTest --- unit-tests/Zephir/Test/TypeHintsTest.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/unit-tests/Zephir/Test/TypeHintsTest.php b/unit-tests/Zephir/Test/TypeHintsTest.php index 01f67ae908..4229f6d5b5 100644 --- a/unit-tests/Zephir/Test/TypeHintsTest.php +++ b/unit-tests/Zephir/Test/TypeHintsTest.php @@ -12,7 +12,6 @@ namespace Zephir\Test; use Zephir\Application; -use Zephir\Commands\CommandGenerate; use Zephir\Compiler; use Zephir\Di\Singleton; use Zephir\Support\TestCase; @@ -60,7 +59,6 @@ public function tearDown() protected function generate($backend) { - $this->markTestSkipped(); chdir(ZEPHIRPATH . '/unit-tests/fixtures/typehints'); try { @@ -72,7 +70,7 @@ protected function generate($backend) /** @var Compiler $compiler */ $compiler = $container->get(Compiler::class); - // $compiler->generate(new CommandGenerate($container->get(Manager::class))); + $compiler->generate(true); } catch (\Exception $e) { $this->fail($e->getMessage()); }