Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Clemens Sahs committed Jul 17, 2014
1 parent 200ccfe commit b872037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/SEOstatsTest/Helper/JsonTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ public function providerTestEncode()
return array(
array($arrayValid, $jsonValid),
array(utf8_decode("json-with-uml-äöü"),
$this->helperJsonGivesFalseOrNull() ? false : 'null'
$this->helperJsonGivesFalseOrNull() ? 'null' : false
),
);
}

public function helperJsonGivesFalseOrNull ()
{
return defined('HHVM_VERSION') || version_compare(PHP_VERSION, '5.5', '>');
return defined('HHVM_VERSION') || version_compare(PHP_VERSION, '5.5', '<');
}
}

0 comments on commit b872037

Please sign in to comment.