Skip to content

Commit

Permalink
tests: CoreTableAttributes.hasFixedLayout defaults true in 6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
justlevine committed Sep 23, 2024
1 parent 0cf502b commit a9ad853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/CoreTableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public function test_retrieve_core_table_attribute_fields() {
'fontSize' => null,
'foot' => [],
'gradient' => null,
'hasFixedLayout' => true,
'hasFixedLayout' => is_wp_version_compatible( '6.6' ) ? true : false, // WP 6.6 changes the unset default value to true.
'head' => [],
'lock' => null,
'style' => null,
Expand Down

0 comments on commit a9ad853

Please sign in to comment.