diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-02-05 08:31:15 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-02-05 08:31:15 +0000 |
| commit | dd04c183d8beed05be2226b30b7dda485ea4538a (patch) | |
| tree | e3f9ed591264105c5f692b5e10cb79449a3ce3c1 /tests/app/MailTest.php | |
| parent | 3be3dabd99a20c9582afa24d09fbb2e9485d1a9e (diff) | |
| download | webtrees-dd04c183d8beed05be2226b30b7dda485ea4538a.tar.gz webtrees-dd04c183d8beed05be2226b30b7dda485ea4538a.tar.bz2 webtrees-dd04c183d8beed05be2226b30b7dda485ea4538a.zip | |
Namespaces should consist of both vendor and package
Diffstat (limited to 'tests/app/MailTest.php')
| -rw-r--r-- | tests/app/MailTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/app/MailTest.php b/tests/app/MailTest.php index 8f551295bb..9f37e5eba1 100644 --- a/tests/app/MailTest.php +++ b/tests/app/MailTest.php @@ -1,5 +1,5 @@ <?php -namespace Webtrees; +namespace Fisharebest\Webtrees; /** * webtrees: online genealogy @@ -36,6 +36,6 @@ class MailTest extends PHPUnit_Framework_TestCase { * @return void */ public function testClassExists() { - $this->assertTrue(class_exists('\Webtrees\Mail')); + $this->assertTrue(class_exists(__NAMESPACE__ . '\Mail')); } } |
