Skip to content

Commit 6054ab8

Browse files
authored
Fix typo
1 parent f995465 commit 6054ab8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/VeryBasicAuthTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
expect($response->getStatusCode())->toEqual(401);
3333
expect($response->headers->get('WWW-Authenticate'))->toEqual(sprintf('Basic realm="%s", charset="UTF-8"', config('very_basic_auth.realm')));
34-
epexct($response->getContent())->toEqual(config('very_basic_auth.error_message'));
34+
expect($response->getContent())->toEqual(config('very_basic_auth.error_message'));
3535
});
3636

3737
test('request with incorrect credentials fails - text/html', function () {

0 commit comments

Comments
 (0)