Skip to content

Commit

Permalink
Tweak some method names in AbstractQueueTest
Browse files Browse the repository at this point in the history
  • Loading branch information
rybakit committed Mar 22, 2013
1 parent 1b6913c commit cd379f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Phive/Tests/Queue/AbstractQueueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,17 +99,17 @@ public function testSliceLimit()
/**
* @expectedException \InvalidArgumentException
*/
public function testSliceThrowsExceptionOnInvalidOffsetArgumentType()
public function testSliceThrowsExceptionOnInvalidOffsetType()
{
$this->queue->slice('invalid_argument', 100);
$this->queue->slice('invalid', 100);
}

/**
* @expectedException \InvalidArgumentException
*/
public function testSliceThrowsExceptionOnInvalidArgumentType()
public function testSliceThrowsExceptionOnInvalidLimitType()
{
$this->queue->slice(0, 'invalid_argument');
$this->queue->slice(0, 'invalid');
}

/**
Expand Down

0 comments on commit cd379f4

Please sign in to comment.