From 1e710e1ae01aab20da8f66475c3b0668d9493289 Mon Sep 17 00:00:00 2001 From: evazion Date: Thu, 4 Oct 2018 21:55:17 -0500 Subject: [PATCH] tests: fix typo in artist controller test. --- test/functional/artists_controller_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/artists_controller_test.rb b/test/functional/artists_controller_test.rb index de0dc0dc8..da95627e6 100644 --- a/test/functional/artists_controller_test.rb +++ b/test/functional/artists_controller_test.rb @@ -131,7 +131,7 @@ class ArtistsControllerTest < ActionDispatch::IntegrationTest context "with an artist that has notes" do setup do as(@admin) do - @artist = create(:artist, name: "aaa", notes: "testing", url_string: "htttp://example.com") + @artist = create(:artist, name: "aaa", notes: "testing", url_string: "http://example.com") end @wiki_page = @artist.wiki_page @another_user = create(:user)