diff --git a/tests/DependencyInjection/ConfigurationTest.php b/tests/DependencyInjection/ConfigurationTest.php index 41281bc..f43b309 100644 --- a/tests/DependencyInjection/ConfigurationTest.php +++ b/tests/DependencyInjection/ConfigurationTest.php @@ -51,6 +51,7 @@ public function testDefaultConfig(): void 'page_range' => 5, 'page_limit' => null, 'convert_exception' => false, + 'remove_page_1_link' => false, ], $config); } @@ -78,6 +79,7 @@ public function testCustomConfig(): void 'page_range' => 15, 'page_limit' => 100, 'convert_exception' => true, + 'remove_page_1_link' => false, ]; $config = $this->processor->processConfiguration($this->configuration, ['knp_paginator' => $expected]);