aboutsummaryrefslogtreecommitdiffstats
path: root/tests/utf/normalizer_test.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-01-31 13:18:37 +0100
committerAndreas Fischer <bantu@phpbb.com>2011-01-31 13:18:37 +0100
commite685c1c005ec146fe802f1ff6fb38cb1fe34ed7a (patch)
tree59507228873666fcb5365f05888ddcfc2a57b1c7 /tests/utf/normalizer_test.php
parentc3a43126504b5eddfa684e900d888dfcbd3dd281 (diff)
parent14891cdf4ecf0e3ee164962be6685b8563f37a15 (diff)
downloadforums-e685c1c005ec146fe802f1ff6fb38cb1fe34ed7a.tar
forums-e685c1c005ec146fe802f1ff6fb38cb1fe34ed7a.tar.gz
forums-e685c1c005ec146fe802f1ff6fb38cb1fe34ed7a.tar.bz2
forums-e685c1c005ec146fe802f1ff6fb38cb1fe34ed7a.tar.xz
forums-e685c1c005ec146fe802f1ff6fb38cb1fe34ed7a.zip
Merge branch 'ticket/erikfrerejean/10011' into develop-olympus
* ticket/erikfrerejean/10011: [ticket/10011] Tests don't work on PHP < 5.3
Diffstat (limited to 'tests/utf/normalizer_test.php')
-rw-r--r--tests/utf/normalizer_test.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/utf/normalizer_test.php b/tests/utf/normalizer_test.php
index 9a9011c0fe..38b4ec1b6b 100644
--- a/tests/utf/normalizer_test.php
+++ b/tests/utf/normalizer_test.php
@@ -7,7 +7,7 @@
*
*/
-require_once __DIR__ . '/../../phpBB/includes/utf/utf_normalizer.php';
+require_once dirname(__FILE__) . '/../../phpBB/includes/utf/utf_normalizer.php';
/**
* @group slow
@@ -16,8 +16,8 @@ class phpbb_utf_normalizer_test extends phpbb_test_case
{
static public function setUpBeforeClass()
{
- self::download('http://www.unicode.org/Public/UNIDATA/NormalizationTest.txt', __DIR__.'/data');
- self::download('http://www.unicode.org/Public/UNIDATA/UnicodeData.txt', __DIR__.'/data');
+ self::download('http://www.unicode.org/Public/UNIDATA/NormalizationTest.txt', dirname(__FILE__).'/data');
+ self::download('http://www.unicode.org/Public/UNIDATA/UnicodeData.txt', dirname(__FILE__).'/data');
}
public function test_normalizer()
@@ -62,7 +62,7 @@ class phpbb_utf_normalizer_test extends phpbb_test_case
$tested_chars = array();
- $fp = fopen(__DIR__.'/data/NormalizationTest.txt', 'rb');
+ $fp = fopen(dirname(__FILE__).'/data/NormalizationTest.txt', 'rb');
while (!feof($fp))
{
$line = fgets($fp);
@@ -117,7 +117,7 @@ class phpbb_utf_normalizer_test extends phpbb_test_case
*/
public function test_invariants(array $tested_chars)
{
- $fp = fopen(__DIR__.'/data/UnicodeData.txt', 'rb');
+ $fp = fopen(dirname(__FILE__).'/data/UnicodeData.txt', 'rb');
while (!feof($fp))
{