diff options
Diffstat (limited to 'tests/radar_axis_test.php')
-rw-r--r-- | tests/radar_axis_test.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/radar_axis_test.php b/tests/radar_axis_test.php index 482bba9..0f2bf8a 100644 --- a/tests/radar_axis_test.php +++ b/tests/radar_axis_test.php @@ -44,16 +44,16 @@ class ezcGraphRadarChartAxisTest extends ezcGraphTestCase return new PHPUnit_Framework_TestSuite( "ezcGraphRadarChartAxisTest" ); } - protected function setUp() + public function setUp() { + parent::setUp(); + static $i = 0; $this->tempDir = $this->createTempDir( __CLASS__ . sprintf( '_%03d_', ++$i ) ) . '/'; $this->basePath = dirname( __FILE__ ) . '/data/'; - - $this->setLocale( LC_NUMERIC, 'en_US', 'en_US.UTF-8', 'en_US.UTF8', 'en', 'english', 'en_US@euro' ); } - protected function tearDown() + public function tearDown() { if ( !$this->hasFailed() ) { |