Skip to content

Commit 0c6ff90

Browse files
fix: wrong type passed to assertResponseStatusCodeSame (#1485)
1 parent aaaebf3 commit 0c6ff90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ final class UsersTest extends AbstractTest
119119

120120
$response = $this->createClientWithCredentials($token)->request('GET', '/users');
121121
$this->assertJsonContains(['hydra:description' => 'Access Denied.']);
122-
$this->assertResponseStatusCodeSame('403');
122+
$this->assertResponseStatusCodeSame(403);
123123
}
124124
}
125125
```

0 commit comments

Comments
 (0)