Skip to content

Commit 621329e

Browse files
committed
Use proper namespacing on test exceptions
1 parent 4d62fe4 commit 621329e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Intercom/IntercomBasicAuthClientTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function testGetServiceDescriptionFromFile()
4141
}
4242

4343
/**
44-
* @expectedException InvalidArgumentException
44+
* @expectedException \InvalidArgumentException
4545
*/
4646
function testGetServiceDescriptionFromFileNoFile()
4747
{
@@ -51,15 +51,15 @@ function testGetServiceDescriptionFromFileNoFile()
5151
}
5252

5353
/**
54-
* @expectedException Guzzle\Common\Exception\InvalidArgumentException
54+
* @expectedException \Guzzle\Common\Exception\InvalidArgumentException
5555
*/
5656
public function testFactoryEmptyArgs()
5757
{
5858
IntercomBasicAuthClient::factory([]);
5959
}
6060

6161
/**
62-
* @expectedException Guzzle\Common\Exception\InvalidArgumentException
62+
* @expectedException \Guzzle\Common\Exception\InvalidArgumentException
6363
*/
6464
public function testFactoryMissingArgs()
6565
{

0 commit comments

Comments
 (0)