Skip to content

Commit

Permalink
cs fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
marac19901990 authored and sebastianbergmann committed Jan 7, 2024
1 parent 38b30cf commit 6055aa3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/Event/Value/TestSuite/TestSuiteBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ public function test_Builds_TestSuite_value_object_for_test_suite_loaded_from_XM
$this->assertCount(3, $testSuite->tests());
}

public function testBuildCountWithFilter()
public function testBuildCountWithFilter(): void
{
$testSuite = $this->testSuiteFromXmlConfiguration();
$filterFactory = new Factory();
$testSuite = $this->testSuiteFromXmlConfiguration();
$filterFactory = new Factory;
$filterFactory->addNameFilter('one');
$testSuite->injectFilter($filterFactory);
$testSuite = TestSuiteBuilder::from($testSuite);
Expand Down

0 comments on commit 6055aa3

Please sign in to comment.