Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Silviu Schiau committed Dec 24, 2016
1 parent e497e03 commit a65d39b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Tests/ParticleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,15 @@ public function __construct() {
/**
* @covers Particle::length
*/
public function testParticleLength()
{
public function testParticleLength(){
$particleId = Particle::generateParticle();
$this->assertEquals(19, strlen((string)$particleId));
}

/**
* @covers Particle::timeFromParticle
*/
public function testTimeLengthFromParticle()
{
public function testTimeLengthFromParticle(){
$particleId = Particle::generateParticle();
$time = Particle::timeFromParticle($particleId);
$this->assertEquals(13, strlen((string)$time));
Expand Down

0 comments on commit a65d39b

Please sign in to comment.