diff --git a/tests/application/modules/opac/controllers/BibControllerTest.php b/tests/application/modules/opac/controllers/BibControllerTest.php
index 5bda8efbf02e36dff6aae260b77f8568e259d455..7739e18a13556ef37dc1a68b9981f62614ff4aea 100644
--- a/tests/application/modules/opac/controllers/BibControllerTest.php
+++ b/tests/application/modules/opac/controllers/BibControllerTest.php
@@ -323,7 +323,7 @@ class BibControllerBibViewInexistantTest extends BibControllerWithZoneTestCase {
 
 
 
-abstract class BibControllerBibSelectionAbstractTestCase extends AbstractControllerTestCase {
+abstract class BibControllerSelectionTestCase extends AbstractControllerTestCase {
 		public function setUp() {
 		parent::setUp();
 		$_SESSION['selection_bib'] = ['id_bibs' => []];
@@ -362,7 +362,7 @@ abstract class BibControllerBibSelectionAbstractTestCase extends AbstractControl
 
 
 
-class BibControllerBibSelectionWithEmptySessionTest extends BibControllerBibSelectionAbstractTestCase {
+class BibControllerBibSelectionWithEmptySessionTest extends BibControllerSelectionTestCase {
 	public function setUp() {
 		parent::setUp();
 		$this->dispatch('bib/selection', true);
@@ -395,7 +395,7 @@ class BibControllerBibSelectionWithEmptySessionTest extends BibControllerBibSele
 
 
 
-class BibControllerBibSelectionWithBibsIdsInSessionTest extends BibControllerBibSelectionAbstractTestCase {
+class BibControllerBibSelectionWithBibsIdsInSessionTest extends BibControllerSelectionTestCase {
 	public function setUp() {
 		parent::setUp();
 		$_SESSION['selection_bib'] = ['id_bibs' => [1, 2]];
@@ -424,7 +424,7 @@ class BibControllerBibSelectionWithBibsIdsInSessionTest extends BibControllerBib
 
 
 
-class BibControllerBibSelectionPostDispatchTest extends BibControllerBibSelectionAbstractTestCase {
+class BibControllerBibSelectionPostDispatchTest extends BibControllerSelectionTestCase {
 	public function setUp() {
 		parent::setUp();
 		$this->postDispatch('bib/selection', ['bib_select' => [1, 2]]);
@@ -452,7 +452,7 @@ class BibControllerBibSelectionPostDispatchTest extends BibControllerBibSelectio
 
 
 
-class BibControllerBibSelectionWithProfilIdParamTest extends BibControllerBibSelectionAbstractTestCase {
+class BibControllerBibSelectionWithProfilIdParamTest extends BibControllerSelectionTestCase {
 	public function setUp() {
 		parent::setUp();
 		$this->dispatch('opac/index/index/id_profil/1', true);