8000 Merge branch '5.2' into 5.3 · symfony/symfony@2b5e388 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2b5e388

Browse files
committed
Merge branch '5.2' into 5.3
* 5.2: Remove always-true requirement
2 parents 9e705ee + 4bdc0f4 commit 2b5e388

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Proxy/SessionHandlerProxyTest.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,6 @@ public function testGc()
122122
$this->proxy->gc(86400);
123123
}
124124

125-
/**
126-
* @requires PHPUnit 5.1
127-
*/
128125
public function testValidateId()
129126
{
130127
$mock = $this->createMock(TestSessionHandler::class);
@@ -137,9 +134,6 @@ public function testValidateId()
137134
$this->assertTrue($this->proxy->validateId('id'));
138135
}
139136

140-
/**
141-
* @requires PHPUnit 5.1
142-
*/
143137
public function testUpdateTimestamp()
144138
{
145139
$mock = $this->createMock(TestSessionHandler::class);

src/Symfony/Component/PropertyAccess/Tests/PropertyAccessorTest.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,6 @@ public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetter()
186186
$this->propertyAccessor->getValue(new UninitializedPrivateProperty(), 'uninitialized');
187187
}
188188

189-
/**
190-
* @requires PHP 7
191< 8000 code>-
*/
192189
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousClass()
193190
{
194191
$this->expectException(AccessException::class);
@@ -206,9 +203,6 @@ public function getUninitialized(): array
206203
$this->propertyAccessor->getValue($object, 'uninitialized');
207204
}
208205

209-
/**
210-
* @requires PHP 7
211-
*/
212206
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousStdClass()
213207
{
214208
$this->expectException(AccessException::class);
@@ -226,9 +220,6 @@ public function getUninitialized(): array
226220
$this->propertyAccessor->getValue($object, 'uninitialized');
227221
}
228222

229-
/**
230-
* @requires PHP 7
231-
*/
232223
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousChildClass()
233224
{
234225
$this->expectException(AccessException::class);

0 commit comments

Comments
 (0)
0