diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2022-05-17 21:21:41 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2022-05-17 21:21:41 +0000 |
commit | 239c198a681c43abe333ed78bd4d7820a89dcc91 (patch) | |
tree | a5a7526e6a7d9417afc67300d8926b1df69af2d3 | |
parent | b5673a0522abf36c2635b80bbce41e28f3017d36 (diff) | |
download | redmine-239c198a681c43abe333ed78bd4d7820a89dcc91.tar.gz redmine-239c198a681c43abe333ed78bd4d7820a89dcc91.zip |
Fix two typos.
git-svn-id: https://svn.redmine.org/redmine/trunk@21597 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/functional/attachments_controller_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/attachments_controller_test.rb b/test/functional/attachments_controller_test.rb index 885a79dbb..43d7c35e0 100644 --- a/test/functional/attachments_controller_test.rb +++ b/test/functional/attachments_controller_test.rb @@ -209,7 +209,7 @@ class AttachmentsControllerTest < Redmine::ControllerTest end end - def test_show_text_file_formated_markdown + def test_show_text_file_formatted_markdown set_tmp_attachments_directory a = Attachment.new(:container => Issue.find(1), :file => uploaded_test_file('testfile.md', 'text/plain'), @@ -222,7 +222,7 @@ class AttachmentsControllerTest < Redmine::ControllerTest assert_select 'div.wiki', :html => "<h1>Header 1</h1>\n\n<h2>Header 2</h2>\n\n<h3>Header 3</h3>" end - def test_show_text_file_fromated_textile + def test_show_text_file_formatted_textile set_tmp_attachments_directory a = Attachment.new(:container => Issue.find(1), :file => uploaded_test_file('testfile.textile', 'text/plain'), |