mirror of
https://github.com/wallabag/wallabag.git
synced 2025-09-15 18:57:05 +00:00
CS
This commit is contained in:
parent
1ca9310f5e
commit
77bd7f690d
3 changed files with 20 additions and 20 deletions
|
@ -33,7 +33,7 @@ class GrabySiteConfigBuilderTest extends TestCase
|
|||
$grabyConfigBuilderMock
|
||||
->method('buildForHost')
|
||||
->with('example.com')
|
||||
->will($this->returnValue($grabySiteConfig));
|
||||
->willReturn($grabySiteConfig);
|
||||
|
||||
$logger = new Logger('foo');
|
||||
$handler = new TestHandler();
|
||||
|
@ -93,7 +93,7 @@ class GrabySiteConfigBuilderTest extends TestCase
|
|||
$grabyConfigBuilderMock
|
||||
->method('buildForHost')
|
||||
->with('unknown.com')
|
||||
->will($this->returnValue(new GrabySiteConfig()));
|
||||
->willReturn(new GrabySiteConfig());
|
||||
|
||||
$logger = new Logger('foo');
|
||||
$handler = new TestHandler();
|
||||
|
@ -153,7 +153,7 @@ class GrabySiteConfigBuilderTest extends TestCase
|
|||
$grabyConfigBuilderMock
|
||||
->method('buildForHost')
|
||||
->with('example.com')
|
||||
->will($this->returnValue($grabySiteConfig));
|
||||
->willReturn($grabySiteConfig);
|
||||
|
||||
$logger = new Logger('foo');
|
||||
$handler = new TestHandler();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue