Skip to content

Commit

Permalink
Coding standard fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vinkla committed Dec 31, 2016
1 parent 2f6e33a commit af68558
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/HashidsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -286,9 +286,9 @@ public function testBigNumberDecode($number, $hash)
*/
public function testBehaviourForDifferentBCMathAccuracy()
{
bcscale(2);
$hashids = new Hashids('this is my salt', 12);
$encoded = $hashids->encode(1);
$this->assertEquals('DngB0NV05ev1', $encoded);
bcscale(2);
$hashids = new Hashids('this is my salt', 12);
$encoded = $hashids->encode(1);
$this->assertEquals('DngB0NV05ev1', $encoded);
}
}

0 comments on commit af68558

Please sign in to comment.