From 6f416523c300d708f30e36e0b99e9db2691eb016 Mon Sep 17 00:00:00 2001
From: Nick Liu <deltik@gmx.com>
Date: Wed, 31 Oct 2018 12:27:45 -0500
Subject: [PATCH] Renamed e_shims to eShims

To follow @myovchev's convention like eHelper

Per @CaMer0n
---
 e107                                                      | 2 +-
 tests/unit/e107/Shims/{e_shimsTest.php => eShimsTest.php} | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
 rename tests/unit/e107/Shims/{e_shimsTest.php => eShimsTest.php} (77%)

diff --git a/e107 b/e107
index ee1a5b127..dae0c58af 160000
--- a/e107
+++ b/e107
@@ -1 +1 @@
-Subproject commit ee1a5b1278a4c6e47f93800d29b0b58504fd232c
+Subproject commit dae0c58af23f0fd31183dc823a328e2d14680d89
diff --git a/tests/unit/e107/Shims/e_shimsTest.php b/tests/unit/e107/Shims/eShimsTest.php
similarity index 77%
rename from tests/unit/e107/Shims/e_shimsTest.php
rename to tests/unit/e107/Shims/eShimsTest.php
index 2506d39ec..4b91c5bec 100644
--- a/tests/unit/e107/Shims/e_shimsTest.php
+++ b/tests/unit/e107/Shims/eShimsTest.php
@@ -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)