1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 11:50:30 +02: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
2 changed files with 4 additions and 4 deletions

2
e107

Submodule e107 updated: ee1a5b1278...dae0c58af2

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)