Skip to content

Commit 1b1fe23

Browse files
committed
fixed formatting
1 parent 26c2697 commit 1b1fe23

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -102,22 +102,22 @@ class UserTest extends PHPUnit\Framework\TestCase
102102
{
103103
use Codeception\Specify;
104104

105-
/** @specify */
106-
protected $user; // is cloned inside specify blocks
107-
108-
public function setUp()
109-
{
110-
$this->user = new User;
111-
}
105+
/** @specify */
106+
protected $user; // is cloned inside specify blocks
107+
108+
public function setUp()
109+
{
110+
$this->user = new User;
111+
}
112112

113-
public function testValidation()
114-
{
113+
public function testValidation()
114+
{
115115
$this->user->name = 'davert';
116116
$this->specify("i can change my name", function() {
117117
$this->user->name = 'jon';
118118
$this->assertEquals('jon', $this->user->name);
119119
});
120-
// user name is davert again
120+
// user name is "davert" again
121121
$this->assertEquals('davert', $this->user->name);
122122
}
123123
}

0 commit comments

Comments
 (0)