Skip to content

Commit

Permalink
typo/comment fixes in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Rct567 committed Sep 6, 2023
1 parent 67f1d3d commit ebdb17b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/Rct567/DomQuery/Tests/DomQueryManipulationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public function testAppendTo()
}

/*
* Test append to (other domquery)
* Test append to (other DomQuery)
*/
public function testAppendToOther()
{
Expand Down Expand Up @@ -217,7 +217,7 @@ public function testPrependTo()
}

/*
* Test prepend to (other domquery)
* Test prepend to (other DomQuery)
*/
public function testPrependToOther()
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Rct567/DomQuery/Tests/DomQueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ public function testDomQueryNoDocument()
/*
* Test constructor with selector and html context
*/
public function testConstuctorWithSelectorAndHtmlContext()
public function testConstructorWithSelectorAndHtmlContext()
{
$dom = new DomQuery('div', '<div>X</div><p>Nope</p>');
$this->assertEquals('<div>X</div>', (string) $dom);
Expand All @@ -301,7 +301,7 @@ public function testConstuctorWithSelectorAndHtmlContext()
/*
* Test constructor with selector and self as context
*/
public function testConstuctorWithSelectorAndSelfContext()
public function testConstructorWithSelectorAndSelfContext()
{
$dom = new DomQuery('div', new DomQuery('<div>X</div><p>Nope</p>'));
$this->assertEquals('<div>X</div>', (string) $dom);
Expand Down

0 comments on commit ebdb17b

Please sign in to comment.