diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-09-21 12:56:01 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-09-21 12:56:01 +0000 |
commit | 1a921c1448b7fb0d205afc20034bd725bf9450c0 (patch) | |
tree | e581df6ff6c12f9ac70a01759c8bfbfcefaacbda /tests/chart_test.php | |
parent | 9d8baefbdf52a83adfb2efed5ebe4bd7b7f765a7 (diff) | |
download | zetacomponents-graph-1a921c1448b7fb0d205afc20034bd725bf9450c0.zip zetacomponents-graph-1a921c1448b7fb0d205afc20034bd725bf9450c0.tar.gz |
- Added documentation
- Removed no longer used exceptions
Diffstat (limited to 'tests/chart_test.php')
-rw-r--r-- | tests/chart_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/chart_test.php b/tests/chart_test.php index 5001153..850155a 100644 --- a/tests/chart_test.php +++ b/tests/chart_test.php @@ -143,7 +143,7 @@ class ezcGraphChartTest extends ezcTestCase $pieChart = new ezcGraphPieChart(); $pieChart->renderer = 'invalid'; } - catch ( ezcGraphInvalidRendererException $e ) + catch ( ezcBaseValueException $e ) { return true; } @@ -175,7 +175,7 @@ class ezcGraphChartTest extends ezcTestCase $pieChart = new ezcGraphPieChart(); $pieChart->driver = 'invalid'; } - catch ( ezcGraphInvalidDriverException $e ) + catch ( ezcBaseValueException $e ) { return true; } |