summaryrefslogtreecommitdiff
path: root/ext/intl/tests/breakiter_first_basic.phpt
diff options
context:
space:
mode:
authorGustavo André dos Santos Lopes <cataphract@php.net>2012-06-10 22:42:38 +0200
committerGustavo André dos Santos Lopes <cataphract@php.net>2012-06-10 22:42:38 +0200
commitcee31091a960014ce5315008fc64437d04174caf (patch)
treeb3306135c8ace884a07d948422b1c26dc01a6f1e /ext/intl/tests/breakiter_first_basic.phpt
parent87dd0269ba262649402bf00207f80aede181f1e7 (diff)
downloadphp-git-cee31091a960014ce5315008fc64437d04174caf.tar.gz
Add Intl prefix to BreakIterator/RuleBasedBI
Diffstat (limited to 'ext/intl/tests/breakiter_first_basic.phpt')
-rw-r--r--ext/intl/tests/breakiter_first_basic.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/tests/breakiter_first_basic.phpt b/ext/intl/tests/breakiter_first_basic.phpt
index fb6c2cd9c8..c8427adc6c 100644
--- a/ext/intl/tests/breakiter_first_basic.phpt
+++ b/ext/intl/tests/breakiter_first_basic.phpt
@@ -1,5 +1,5 @@
--TEST--
-BreakIterator::first(): basic test
+IntlBreakIterator::first(): basic test
--SKIPIF--
if (!extension_loaded('intl'))
die('skip intl extension not enabled');
@@ -7,7 +7,7 @@ if (!extension_loaded('intl'))
<?php
ini_set("intl.error_level", E_WARNING);
-$bi = BreakIterator::createWordInstance('pt');
+$bi = IntlBreakIterator::createWordInstance('pt');
$bi->setText('foo bar trans');
var_dump($bi->current());