From c9cc5acc0eca6db55f307be09160a75eb6542cd4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 22 Sep 2012 23:17:58 +0530 Subject: [PATCH] No need to use underscore prefix for public functions --- test/libraries/common/PMA_pow_test.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/libraries/common/PMA_pow_test.php b/test/libraries/common/PMA_pow_test.php index dbbb5e33bc..d83adec53b 100644 --- a/test/libraries/common/PMA_pow_test.php +++ b/test/libraries/common/PMA_pow_test.php @@ -46,7 +46,7 @@ class PMA_pow_test extends PHPUnit_Framework_TestCase } } - public function _testNegativeExp() + public function testNegativeExp() { $this->assertEquals( 0.25, @@ -54,7 +54,7 @@ class PMA_pow_test extends PHPUnit_Framework_TestCase ); } - public function _testNegativeExpPow() + public function testNegativeExpPow() { if (function_exists('pow')) { $this->assertEquals( @@ -66,7 +66,7 @@ class PMA_pow_test extends PHPUnit_Framework_TestCase } } - public function _testNegativeExpBcpow() + public function testNegativeExpBcpow() { if (function_exists('bcpow')) { $this->assertEquals( @@ -78,7 +78,7 @@ class PMA_pow_test extends PHPUnit_Framework_TestCase } } - public function _testNegativeExpGmppow() + public function testNegativeExpGmppow() { if (function_exists('gmp_pow')) { $this->assertEquals(