Skip to content

Commit

Permalink
DomTests not DOMTests
Browse files Browse the repository at this point in the history
  • Loading branch information
dphiffer committed Sep 25, 2024
1 parent 81c1ef0 commit d220a78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/DomTests.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace SplitTests;

class DOMTests {
class DomTests {
/**
* Keeps a reference to the parent plugin.
*
Expand All @@ -22,7 +22,7 @@ class DOMTests {
/**
* Setup DOM test hooks.
*
* @return SplitTests\DOMTests
* @return SplitTests\DomTests
*/
function __construct($plugin) {
$this->plugin = $plugin;
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function __construct() {

// Setup tests
$this->title_tests = new TitleTests($this);
$this->dom_tests = new DOMTests($this);
$this->dom_tests = new DomTests($this);

// Add ACF JSON path
add_filter('acf/settings/load_json', function($paths) {
Expand Down

0 comments on commit d220a78

Please sign in to comment.