1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 01:54:12 +02:00

Some class renaming.

This commit is contained in:
Cameron
2020-06-13 13:18:37 -07:00
parent 073eafe46b
commit c5347d1210
5 changed files with 10 additions and 10 deletions

View File

@@ -12,7 +12,7 @@
class e_signup_classTest extends \Codeception\Test\Unit
{
/** @var e_signup_class */
/** @var e_signup */
protected $sup;
protected function _before()
@@ -20,11 +20,11 @@
require_once(e_HANDLER."e_signup_class.php");
try
{
$this->sup = $this->make('e_signup_class');
$this->sup = $this->make('e_signup');
}
catch(Exception $e)
{
$this->assertTrue(false, "Couldn't load e_signup_class object");
$this->assertTrue(false, "Couldn't load e_signup object");
}
$this->sup->__construct();