Skip to content
Snippets Groups Projects
Commit b1cee434 authored by Ghislain Loas's avatar Ghislain Loas
Browse files

hotline #49519 : fix tests failures

parent e6ce3683
Branches
Tags
3 merge requests!1864Master,!1861Hotline master,!1854Hotline#49519 valence les traitements cosmogramme ne terminent jamais
......@@ -36,25 +36,30 @@ abstract class AbonneControllerSettingsTestCase extends AbstractControllerTestCa
$this->_music = $this->fixture('Class_Catalogue',
['id' => 1,
'libelle' => 'Music',
'indexer' => '1']);
'indexer' => '1',
'section' => 'music']);
$this->_sport = $this->fixture('Class_Catalogue',
['id' => 2,
'libelle' => 'Sport',
'indexer' => '1']);
'indexer' => '1',
'section' => 'sport']);
$this->_cinema = $this->fixture('Class_Catalogue',
['id' => 3,
'libelle' => 'Cinema',
'section' => 'cinema',
'sous_domaines' => [ $this->fixture('Class_Catalogue',
['id' => 31,
'libelle' => 'Muet',
'indexer' => '1']),
'indexer' => '1',
'section' => 'muet']),
$this->fixture('Class_Catalogue',
['id' => 32,
'libelle' => 'Couleurs',
'indexer' => '1'])
'indexer' => '1',
'section' => 'couleurs'])
]]);
$this->_mel = $this->fixture('Class_Bib',
......@@ -67,7 +72,8 @@ abstract class AbonneControllerSettingsTestCase extends AbstractControllerTestCa
'sous_domaines' => [ $this->fixture('Class_Catalogue',
['id' => 81,
'libelle' => 'Kizomba',
'indexer' => '1'])]]);
'indexer' => '1',
'section' => 'danse angola'])]]);
$this->_user->setBookmarkedDomains([3]);
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment