diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-08-18 12:56:10 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-08-18 12:56:10 +0000 |
commit | 5091a24682cf37af25eebd4158a0d9480aea6252 (patch) | |
tree | d4998b172a75d207daed201225a988912485e5a9 /tests/palette_test.php | |
parent | 94953ea4f75810e5e667425bfd55ce8d51672ee3 (diff) | |
download | zetacomponents-graph-5091a24682cf37af25eebd4158a0d9480aea6252.zip zetacomponents-graph-5091a24682cf37af25eebd4158a0d9480aea6252.tar.gz |
- Started refactoring of font configuration
# - The next iteration will enable you to use the different font rendering
# methods from ext/GD
Diffstat (limited to 'tests/palette_test.php')
-rw-r--r-- | tests/palette_test.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/palette_test.php b/tests/palette_test.php index 29c5b18..c80850e 100644 --- a/tests/palette_test.php +++ b/tests/palette_test.php @@ -198,13 +198,13 @@ class ezcGraphPaletteTest extends ezcTestCase ); } - public function testFontFace() + public function testFontName() { $chart = new ezcGraphLineChart(); $this->assertEquals( - 'Vera.ttf', - $chart->palette->fontFace, + 'sans-serif', + $chart->palette->fontName, 'Font face not properly set.' ); } |