Skip to content

Commit

Permalink
zendframework#6058 - Correct namespacing of @expectedException symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius authored and dima committed Nov 27, 2014
1 parent 14ac615 commit d4136c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/ZendTest/Log/Filter/TimestampTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,23 +78,23 @@ public function datePartDataProvider()
}

/**
* @expectedException Zend\Log\Exception\InvalidArgumentException
* @expectedException \Zend\Log\Exception\InvalidArgumentException
*/
public function testConstructorThrowsOnInvalidValue()
{
new TimestampFilter('foo');
}

/**
* @expectedException Zend\Log\Exception\InvalidArgumentException
* @expectedException \Zend\Log\Exception\InvalidArgumentException
*/
public function testConstructorThrowsWhenDateFormatCharIsMissing()
{
new TimestampFilter(3);
}

/**
* @expectedException Zend\Log\Exception\InvalidArgumentException
* @expectedException \Zend\Log\Exception\InvalidArgumentException
*/
public function testConstructorThrowsOnUnsupportedComparisonOperator()
{
Expand Down

0 comments on commit d4136c0

Please sign in to comment.