spelling: unknown

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2021-06-25 00:22:13 -04:00
parent 590f94f531
commit 8e951a8340

View file

@ -110,7 +110,7 @@ class FriendshipsControllerTest < ActionDispatch::IntegrationTest
ActionMailer::Base.deliveries.clear
end
def test_make_friend_unkown_user
def test_make_friend_unknown_user
# Should error when a bogus user is specified
session_for(create(:user))
get make_friend_path(:display_name => "No Such User")
@ -188,7 +188,7 @@ class FriendshipsControllerTest < ActionDispatch::IntegrationTest
assert_nil Friendship.where(:befriender => user, :befriendee => friend).first
end
def test_remove_friend_unkown_user
def test_remove_friend_unknown_user
# Should error when a bogus user is specified
session_for(create(:user))
get remove_friend_path(:display_name => "No Such User")