Changeset 57703
- Timestamp:
- 02/23/2024 04:53:39 PM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/blocks/wpBlockPatternsRegistry.php
r57627 r57703 22 22 23 23 /** 24 25 26 27 28 29 30 31 32 24 33 * Set up each test method. 25 34 * … … 29 38 parent::set_up(); 30 39 31 $this->registry = new WP_Block_Patterns_Registry(); 40 $this->registry = new WP_Block_Patterns_Registry(); 41 $this->original_registered_patterns = $this->get_registered_patterns_variable_value(); 32 42 } 33 43 … … 46 56 } 47 57 58 48 59 parent::tear_down(); 49 60 } … … 544 555 $this->assertEmpty( array_intersect( $theme_patterns, $registered ), 'Theme patterns were were incorrectly registered.' ); 545 556 } 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 546 692 }
Note: See TracChangeset
for help on using the changeset viewer.