diff options
author | nornholdj <nornholdj@gmail.com> | 2014-11-10 14:40:51 -0500 |
---|---|---|
committer | nornholdj <nornholdj@gmail.com> | 2014-11-10 14:40:51 -0500 |
commit | 638798a8fa0447d8ed0911752a7d0ba907b921e3 (patch) | |
tree | f83c83ac55f099673efecdb511a7d0edd99793f7 /test/unit/SparkPostTest.php | |
parent | fea870e7ce1a59accdb4e2e4be2c41170523d4c7 (diff) | |
download | php-sparkpost-638798a8fa0447d8ed0911752a7d0ba907b921e3.zip php-sparkpost-638798a8fa0447d8ed0911752a7d0ba907b921e3.tar.gz php-sparkpost-638798a8fa0447d8ed0911752a7d0ba907b921e3.tar.bz2 |
Updated SparkPost References and updated docs and mappings to reflect
updated config lists.
Diffstat (limited to 'test/unit/SparkPostTest.php')
-rw-r--r-- | test/unit/SparkPostTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/SparkPostTest.php b/test/unit/SparkPostTest.php index 1b86a8f..cc1c9c9 100644 --- a/test/unit/SparkPostTest.php +++ b/test/unit/SparkPostTest.php @@ -1,7 +1,7 @@ <?php namespace SparkPost\Test; -use MessageSystems\SparkPost; +use SparkPost\SparkPost; class SparkPostTest extends \PHPUnit_Framework_TestCase { @@ -9,7 +9,7 @@ class SparkPostTest extends \PHPUnit_Framework_TestCase { * @desc Ensures that the configuration class is not instantiable. */ public function testConstructorCannotBeCalled() { - $class = new \ReflectionClass('\MessageSystems\SparkPost'); + $class = new \ReflectionClass('\SparkPost\SparkPost'); $this->assertFalse($class->isInstantiable()); } |