Improve capitalisation of page titles

This commit is contained in:
Tom Hughes 2021-07-22 19:00:08 +01:00
parent b5eda32c10
commit abd98757b6
3 changed files with 34 additions and 34 deletions

View file

@ -20,7 +20,7 @@ class UserLogoutTest < ApplicationSystemTestCase
click_on user.display_name
click_on "Log Out"
assert page.has_content? "Log In"
assert page.has_content? "Public GPS traces"
assert page.has_content? "Public GPS Traces"
end
test "Sign out via fallback page" do
@ -43,6 +43,6 @@ class UserLogoutTest < ApplicationSystemTestCase
click_button "Logout"
assert page.has_content? "Log In"
assert page.has_content? "Public GPS traces"
assert page.has_content? "Public GPS Traces"
end
end