1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-17 17:08:37 +00:00

Improved tests

This commit is contained in:
Nicolas Lœuillet 2016-03-18 13:12:09 +01:00
parent 78becd5401
commit 1b64a84b78
3 changed files with 18 additions and 7 deletions

View file

@ -257,7 +257,7 @@ class Config
/**
* Set readingSpeed.
*
* @param int $readingSpeed
* @param float $readingSpeed
*
* @return Config
*/
@ -271,7 +271,7 @@ class Config
/**
* Get readingSpeed.
*
* @return int
* @return float
*/
public function getReadingSpeed()
{

View file

@ -46,6 +46,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
$data = array(
'config[theme]' => 'baggy',
'config[items_per_page]' => '30',
'config[reading_speed]' => '0.5',
'config[language]' => 'en',
);