Capitalize

This commit is contained in:
Jason Zimdars
2025-11-19 16:47:02 -06:00
parent 67da7cba75
commit f35623b75f
+2 -2
View File
@@ -18,13 +18,13 @@ class HotkeysHelperTest < ActionView::TestCase
test "mac enter" do
emulate_mac
assert_equal "return+J", hotkey_label([ "enter", "J" ])
assert_equal "Return+J", hotkey_label([ "enter", "J" ])
end
test "linux enter" do
emulate_linux
assert_equal "enter+J", hotkey_label([ "enter", "J" ])
assert_equal "Enter+J", hotkey_label([ "enter", "J" ])
end
test "mac hyper" do