diff options
author | emkael <emkael@tlen.pl> | 2013-09-15 00:32:50 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2013-09-15 00:32:50 +0200 |
commit | 33afd96244c221bc01576827f189a13d4b735062 (patch) | |
tree | 1972d1077993fbf1b076d3edd1441ff270720c72 /tests | |
parent | 7e4a01da3144a0a9e6dfe4c816798fb003633be6 (diff) |
* tablica asocjacyjna zamiast obiektu na wyjściu kalkulatora
Diffstat (limited to 'tests')
-rw-r--r-- | tests/OsikaEvaluatorTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/OsikaEvaluatorTest.php b/tests/OsikaEvaluatorTest.php index 1256515..ce713a7 100644 --- a/tests/OsikaEvaluatorTest.php +++ b/tests/OsikaEvaluatorTest.php @@ -17,7 +17,7 @@ class OsikaEvaluatorTest extends PHPUnit_Framework_TestCase { foreach ($file as $line) { if (trim($line)) { if ($switch) { - $item[] = json_decode($line); + $item[] = json_decode($line, TRUE); $ret[] = $item; } else { |