1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-24 22:39:49 +01:00

Renamed e_shims to eShims

To follow @myovchev's convention like eHelper

Per @CaMer0n
This commit is contained in:
Nick Liu 2018-10-31 12:27:45 -05:00
parent f145622207
commit 6f416523c3
No known key found for this signature in database
GPG Key ID: 1167C5F9C9897637
2 changed files with 4 additions and 4 deletions

2
e107

@ -1 +1 @@
Subproject commit ee1a5b1278a4c6e47f93800d29b0b58504fd232c
Subproject commit dae0c58af23f0fd31183dc823a328e2d14680d89

View File

@ -8,16 +8,16 @@
*
*/
class e_shimsTest extends \Codeception\Test\Unit
class eShimsTest extends \Codeception\Test\Unit
{
public function testReadfile()
{
$this->testReadfileImplementation(array(e_shims::class, 'readfile'));
$this->testReadfileImplementation(array(eShims::class, 'readfile'));
}
public function testReadfileAlt()
{
$this->testReadfileImplementation(array(e_shims::class, 'readfile_alt'));
$this->testReadfileImplementation(array(eShims::class, 'readfile_alt'));
}
private function testReadfileImplementation($implementation)