Skip to content

Commit

Permalink
Some style adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Hilari Moragrega committed Jun 13, 2017
1 parent bcc2670 commit 3fcf3fd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion spec/BalancerSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function it_can_distribute_hits_across_features_based_on_numeric_seeds()
function it_can_distribute_hits_across_features_based_on_string_seeds()
{
$this->get("foo", "bar")->shouldReturn("def");
$this->get("foo", "foo")->shouldReturn("abc");
$this->get("foo", "foo")->shouldReturn("abc");
}

function it_can_distribute_hits_across_features_without_seed()
Expand Down
18 changes: 9 additions & 9 deletions spec/SeedSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ function it_can_determine_the_seed($inputValue, $expectedValue)

public function seedConversionExamples()
{
return array(
array("1234à", 84),
array("1234è", 88),
array("foo", 26),
array(10055, 55),
array(-10055, 55),
array(1.1, 84),
array(1.2, 26),
);
return [
["1234à", 84],
["1234è", 88],
["foo", 26],
[10055, 55],
[-10055, 55],
[1.1, 84],
[1.2, 26],
];
}
}

0 comments on commit 3fcf3fd

Please sign in to comment.