Skip to content

Commit 632decc

Browse files
committed
Fix tests
1 parent 06c3f40 commit 632decc

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

tests/Fixtures/Civility.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
class Civility extends StaticEntity
88
{
9-
private $id;
109
private $name;
1110
private $shortName;
1211

@@ -18,14 +17,6 @@ static public function getDataSet()
1817
);
1918
}
2019

21-
/**
22-
* @return mixed
23-
*/
24-
public function getId()
25-
{
26-
return $this->id;
27-
}
28-
2920
/**
3021
* @return mixed
3122
*/

tests/StaticEntityTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function testAlternativeSameInstance()
5353

5454
/**
5555
* @expectedException \Exception
56-
* @expectedExceptionMessage Class not exists
56+
* @expectedExceptionMessage not exists
5757
*/
5858
public function testNotExists()
5959
{
@@ -89,7 +89,7 @@ public function testInvalidData()
8989

9090
/**
9191
* @expectedException \Exception
92-
* @expectedExceptionMessage Property not exists
92+
* @expectedExceptionMessage not exists
9393
*/
9494
public function testMissingProperty()
9595
{

0 commit comments

Comments
 (0)