Skip to content

Commit

Permalink
Update test to be forgiving for system filesystem orders
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Dec 6, 2024
1 parent d031807 commit 6fcbcfa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public function testGetElementsByClassTypes()

$this->assertInstanceOf(Collection::class, $collection);
$this->assertContainsOnlyInstancesOf(TestableHtmlElement::class, $collection);
$this->assertSame(['Foo', 'Bar'], $collection->map->text->all());
$this->assertEquals(['Foo', 'Bar'], $collection->map->text->all());
}

public function testGetElementsByClassWithChildNodes()
Expand Down

0 comments on commit 6fcbcfa

Please sign in to comment.