Skip to content

Commit 3f154ea

Browse files
committed
replace assertEmpty() with stricter assertions
1 parent 962787c commit 3f154ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Metadata/AttributeReaderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function testAttributesAreCached()
7171
$reader = new AttributeReader();
7272
$cacheRef = new \ReflectionProperty(AttributeReader::class, 'cache');
7373

74-
self::assertEmpty($cacheRef->getValue($reader));
74+
self::assertSame([], $cacheRef->getValue($reader));
7575

7676
$reader->forClass(FooBar::class, TimeSensitive::class);
7777

0 commit comments

Comments
 (0)