minor #22852 [Serializer] Remove a useless legacy annotation (dunglas)

This PR was merged into the 3.3 branch.

Discussion
----------

[Serializer] Remove a useless legacy annotation

| Q             | A
| ------------- | ---
| Branch?       | 3.3
| Bug fix?      | no
| New feature?  | no <!-- don't forget updating src/**/CHANGELOG.md files -->
| BC breaks?    | no
| Deprecations? | no <!-- don't forget updating UPGRADE-*.md files -->
| Tests pass?   | yes/no
| Fixed tickets | n/a
| License       | MIT
| Doc PR        | n/a

<!--
- Bug fixes must be submitted against the lowest branch where they apply
  (lowest branches are regularly merged to upper ones so they get the fixes too).
- Features and deprecations must be submitted against the 3.4,
  legacy code removals go to the master branch.
- Please fill in this template according to the PR you're about to submit.
- Replace this comment by a description of what your PR is solving.
-->

Commits
-------

987749b [Serializer] Remove a useless legacy annotation
This commit is contained in:
Nicolas Grekas 2017-05-22 11:51:09 +02:00
commit 1705eebef6

View File

@ -26,9 +26,6 @@ class AbstractObjectNormalizerTest extends TestCase
$this->assertSame('baz', $normalizedData->baz);
}
/**
* @group legacy
*/
public function testInstantiateObjectDenormalizer()
{
$data = array('foo' => 'foo', 'bar' => 'bar', 'baz' => 'baz');