-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Remove wrong @group legacy annotations #34433
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,8 +142,6 @@ public function getToolbarConfig() | |
} | ||
|
||
/** | ||
* @group legacy | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removing this was missed in #33507 where the deprecation of the |
||
* | ||
* @dataProvider getInterceptRedirectsToolbarConfig | ||
*/ | ||
public function testToolbarConfigUsingInterceptRedirects( | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,12 +62,9 @@ public function getBadResourceStrings() | |
]; | ||
} | ||
|
||
/** | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one should be removed here and on master 👍 |
||
* @group legacy | ||
*/ | ||
public function testExceptionOnNoObjectReturned() | ||
{ | ||
$this->expectException('LogicException'); | ||
$this->expectException(\TypeError::class); | ||
$loader = new TestObjectLoader(); | ||
$loader->loaderMap = ['my_service' => 'NOT_AN_OBJECT']; | ||
$loader->load('my_service::method'); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing this was missed in #33507 where the deprecation of the
intercept_redirects
option was reverted.