Reinstate an assertion commented out in [25409]. This test is skipped due to @ticket anyway. see #25282.

git-svn-id: https://develop.svn.wordpress.org/trunk@25440 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-09-14 19:17:31 +00:00
parent 7fe981c578
commit 564d5a51c2
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ class Tests_User extends WP_UnitTestCase {
$user->customField = 123;
$this->assertEquals( $user->customField, 123 );
unset( $user->customField );
// $this->assertFalse( isset( $user->customField ) );
$this->assertFalse( isset( $user->customField ) );
return $user;
}