Skip to content

Commit

Permalink
Drop useless test
Browse files Browse the repository at this point in the history
  • Loading branch information
alcaeus committed Mar 8, 2018
1 parent 7b91337 commit 35a4f2e
Showing 1 changed file with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,24 +90,6 @@ public function testSerializeUnserializeModifyMerge()
$this->assertTrue($this->dm->contains($phonenumbers[1]));
}

/**
* @group DDC-203
*/
public function testDetachedEntityThrowsExceptionOnFlush()
{
$ph = new CmsPhonenumber();
$ph->phonenumber = '12345';
$this->dm->persist($ph);
$this->dm->flush();
$this->dm->clear();
$this->dm->persist($ph);
try {
$this->dm->flush();
$this->fail();
} catch (\Throwable $expected) {
}
}

public function testUninitializedLazyAssociationsAreIgnoredOnMerge()
{
$user = new CmsUser();
Expand Down

0 comments on commit 35a4f2e

Please sign in to comment.