7 | | - Use {{{assertFalse}}} instead of {{{assertEquals( false, ... ) );}}} |
8 | | - Additional note: Instead of {{{$this->assertEquals( false, isset( $meta['test_cat_meta'] ) );}}}, one could consider {{{assertArrayNotHasKey}}}, but we note that it also returns {{{true}}} for {{{null}}} values. But I didn't change it in the patch to use {{{assertArrayNotHasKey}}}. |
| 7 | - Use {{{assertFalse}}} instead of {{{assertEquals( false, ... )}}} |
| 8 | |
| 9 | Additional note: Instead of {{{$this->assertEquals( false, isset( $meta['test_cat_meta'] ) );}}}, one could consider {{{assertArrayNotHasKey}}}, but we note that it also returns {{{true}}} for {{{null}}} values. But I didn't change it in the patch to use {{{assertArrayNotHasKey}}}. |