Skip to content

Commit

Permalink
update: prevent format name collisions
Browse files Browse the repository at this point in the history
Jasonej committed Nov 4, 2021
1 parent aed3ebe commit 5456cb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Unit/Formatting/FormatManagerTest.php
Original file line number Diff line number Diff line change
@@ -33,13 +33,13 @@ public function foo() {}
}

/** @dataProvider formatNameCollisionProvider */
public function test_format_name_collisions_are_prevented(object $object): void
public function test_format_name_collisions_are_prevented(object $subject): void
{
# Expect
$this->expectException(FormatNameCollisionException::class);

# Act
new FormatManager($object);
new FormatManager($subject);
}

# region Data Providers

0 comments on commit 5456cb2

Please sign in to comment.