Skip to content

Commit

Permalink
Fix typo in error message link to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
willpusher committed Jul 17, 2023
1 parent 532828a commit d1024af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/javascripts/unit/core/utils/url_store_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ describe('url_store', function(){
describe('buildLogSuffix', function(){
it('should build a log suffix for known keys', function(){
var suffix = url_store.buildLogSuffix('authenticationEndpoint');
expect(suffix).toEqual('See: https://pusher.com/docs/channels/server_api/authenticating_users');
expect(suffix).toEqual('See: https://pusher.com/docs/channels/server_api/authenticating-users');
});
it('should return a blank suffix for unknown keys', function(){
var suffix = url_store.buildLogSuffix('somethingUnknown');
Expand Down

0 comments on commit d1024af

Please sign in to comment.