1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-01 14:20:16 +02:00

Improve Factory variable names (#2895)

This commit is contained in:
Jan Tojnar
2022-07-06 12:14:04 +02:00
committed by GitHub
parent e3dad86bca
commit d107f8ed30
18 changed files with 59 additions and 59 deletions

View File

@@ -46,10 +46,10 @@ class ListActionTest extends TestCase
'Item count doesn\'t match'
);
$bridgeFac = new BridgeFactory();
$bridgeFactory = new BridgeFactory();
$this->assertEquals(
count($bridgeFac->getBridgeNames()),
count($bridgeFactory->getBridgeNames()),
count($items['bridges']),
'Number of bridges doesn\'t match'
);
@@ -80,9 +80,9 @@ class ListActionTest extends TestCase
private function initAction()
{
$actionFac = new ActionFactory();
$actionFactory = new ActionFactory();
$action = $actionFac->create('list');
$action = $actionFactory->create('list');
ob_start();
$action->execute();