Skip to content

Commit 518eac4

Browse files
committed
Improve naming
1 parent 3e32907 commit 518eac4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/AttributeExtensionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ public function test_it_is_a_test_hook()
2525
#[Env('APP_ENV', 'test_foo')]
2626
#[Server('APP_DEBUG', '1')]
2727
#[Putenv('APP_HOST', 'dev')]
28-
public function test_it_reads_global_variables_from_method_annotations()
28+
public function test_it_reads_global_variables_from_method_attributes()
2929
{
3030
$this->assertArraySubset(['APP_ENV' => 'test_foo'], $_ENV);
3131
$this->assertArraySubset(['APP_DEBUG' => '1'], $_SERVER);
3232
$this->assertArraySubset(['APP_HOST' => 'dev'], \getenv());
3333
}
3434

35-
public function test_it_reads_global_variables_from_class_annotations()
35+
public function test_it_reads_global_variables_from_class_attributes()
3636
{
3737
$this->assertArraySubset(['APP_ENV' => 'test'], $_ENV);
3838
$this->assertArraySubset(['APP_DEBUG' => '0'], $_SERVER);

0 commit comments

Comments
 (0)