summaryrefslogtreecommitdiffstats
path: root/Tests/Core/Util/StringTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Core/Util/StringTest.php')
-rwxr-xr-xTests/Core/Util/StringTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/Core/Util/StringTest.php b/Tests/Core/Util/StringTest.php
index fe4eae4..e5f8160 100755
--- a/Tests/Core/Util/StringTest.php
+++ b/Tests/Core/Util/StringTest.php
@@ -2,13 +2,13 @@
namespace Symfony\Component\Security\Tests\Core\Util;
-use Symfony\Component\Security\Core\Util\String;
+use Symfony\Component\Security\Core\Util\StringUtils;
class StringTest extends \PHPUnit_Framework_TestCase
{
public function testEquals()
{
- $this->assertTrue(String::equals('password', 'password'));
- $this->assertFalse(String::equals('password', 'foo'));
+ $this->assertTrue(StringUtils::equals('password', 'password'));
+ $this->assertFalse(StringUtils::equals('password', 'foo'));
}
}