diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-12-15 10:23:06 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-12-15 10:23:06 +0000 |
commit | 0f0d4def49664b84f9aebc9ac94f4b9ac3a5a8bb (patch) | |
tree | 087544c02969453e03a27336fe54e02de7a888bc /tests/element_options_test.php | |
parent | 608e7e2984878c368127f41bb722c416e533c646 (diff) | |
download | zetacomponents-graph-0f0d4def49664b84f9aebc9ac94f4b9ac3a5a8bb.zip zetacomponents-graph-0f0d4def49664b84f9aebc9ac94f4b9ac3a5a8bb.tar.gz |
- Fixed majorStep default value to be null
Diffstat (limited to 'tests/element_options_test.php')
-rw-r--r-- | tests/element_options_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/element_options_test.php b/tests/element_options_test.php index 0fc11d5..b73f59d 100644 --- a/tests/element_options_test.php +++ b/tests/element_options_test.php @@ -670,7 +670,7 @@ class ezcGraphElementOptionsTest extends ezcImageTestCase $options = new ezcGraphChartElementNumericAxis(); $this->assertSame( - false, + null, $options->majorStep, 'Wrong default value for property majorStep in class ezcGraphChartElementNumericAxis' ); @@ -699,7 +699,7 @@ class ezcGraphElementOptionsTest extends ezcImageTestCase $options = new ezcGraphChartElementNumericAxis(); $this->assertSame( - false, + null, $options->minorStep, 'Wrong default value for property minorStep in class ezcGraphChartElementNumericAxis' ); |