Skip to content

Commit

Permalink
Revert "Fixed last previously broken tests"
Browse files Browse the repository at this point in the history
This reverts commit 79b1832.
  • Loading branch information
dstogov committed Jun 29, 2015
1 parent 642c379 commit 0b35e4a
Show file tree
Hide file tree
Showing 7 changed files with 1,382 additions and 1,096 deletions.
6 changes: 3 additions & 3 deletions Zend/tests/mod_001.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ $b = array();
try {
$c = $a % $b;
var_dump($c);
} catch (Error $e) {
echo "Error: " . $e->getMessage() . "\n";
} catch (Exception $e) {
echo "Exception: " . $e->getMessage() . "\n";
}

echo "Done\n";
?>
--EXPECTF--
Error: Modulo by zero
Exception: Division by zero
Done
Loading

0 comments on commit 0b35e4a

Please sign in to comment.