From 28526373d88129194e40af508a82e50f910c2b16 Mon Sep 17 00:00:00 2001 From: Anthony Ferrara Date: Mon, 10 Jun 2013 15:42:32 -0400 Subject: [PATCH] Fix test to use proper skip method --- tests/ZendTest/Crypt/Password/BcryptTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ZendTest/Crypt/Password/BcryptTest.php b/tests/ZendTest/Crypt/Password/BcryptTest.php index fbbef0485c9..97b067275c3 100644 --- a/tests/ZendTest/Crypt/Password/BcryptTest.php +++ b/tests/ZendTest/Crypt/Password/BcryptTest.php @@ -134,7 +134,7 @@ public function testVerifyFailureVersion() ); $this->bcrypt->verify('test', $hash); } else { - $this->skip('Test requires PHP which does not support $2y hashes (<5.3.7)'); + $this->markTestSkipped('Test requires PHP which does not support $2y hashes (<5.3.7)'); } }