Commit 06f00a57e063d2b96dfa1d5b09775c2cd7a06d08
1 parent
d6736882
Exists in
master
and in
95 other branches
Remove debug stuff
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
php/WebServices/Tests/Suite/TestIsAlive_01.php
... | ... | @@ -17,12 +17,12 @@ class TestIsAlive_01 extends TestAbstract |
17 | 17 | } |
18 | 18 | |
19 | 19 | protected function checkRESTResult($result) { |
20 | - //if (empty($result)) { | |
20 | + if (empty($result)) { | |
21 | 21 | return array( |
22 | 22 | 'success' => FALSE, |
23 | 23 | 'message' => 'Empty result', |
24 | 24 | ); |
25 | - //} | |
25 | + } | |
26 | 26 | $json_res = json_decode($result, TRUE); |
27 | 27 | if (!$json_res) { |
28 | 28 | return array( |
... | ... |