diff --git a/test/Faker/Provider/LoremTest.php b/test/Faker/Provider/LoremTest.php index 8a90e0b6..70ca58ad 100644 --- a/test/Faker/Provider/LoremTest.php +++ b/test/Faker/Provider/LoremTest.php @@ -16,19 +16,19 @@ class LoremTest extends \PHPUnit_Framework_TestCase $this->assertEquals($singleParagraph . "\n" . $singleParagraph, $provider->text(52)); } - public function testWithNegativeParam() - { - $this->assertEquals('', Lorem::sentence(-1)); - $this->assertEquals('', Lorem::paragraph(-1)); - $this->assertEquals('', Lorem::sentence(0)); - $this->assertEquals('', Lorem::paragraph(0)); - } + public function testWithNegativeParam() + { + $this->assertEquals('', Lorem::sentence(-1)); + $this->assertEquals('', Lorem::paragraph(-1)); + $this->assertEquals('', Lorem::sentence(0)); + $this->assertEquals('', Lorem::paragraph(0)); + } - public function testWithStrictlyPositiveParam() - { - $this->assertGreaterThan(1, strlen(Lorem::sentence(1))); - $this->assertGreaterThan(1, strlen(Lorem::paragraph(1))); - } + public function testWithStrictlyPositiveParam() + { + $this->assertGreaterThan(1, strlen(Lorem::sentence(1))); + $this->assertGreaterThan(1, strlen(Lorem::paragraph(1))); + } } class TestableLorem extends Lorem