Remove test for number of meta, since we don't delete extra meta bits anymore. The test for content is enough.

This commit is contained in:
Justin Shreve 2016-08-04 13:17:53 -07:00
parent e3b1f6dbc9
commit 59a68e11e3
1 changed files with 0 additions and 1 deletions

View File

@ -438,7 +438,6 @@ class CustomerCRUD extends \WC_Unit_Test_Case {
add_user_meta( $customer_id, 'test_field', $meta_value, true );
$customer->read( $customer_id );
$fields = $customer->get_meta_data();
$this->assertCount( 1, $fields );
$this->assertEquals( $meta_value, $customer->get_meta( 'test_field') );
}