diff options
Diffstat (limited to 'test/integration/issues_test.rb')
-rw-r--r-- | test/integration/issues_test.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/integration/issues_test.rb b/test/integration/issues_test.rb index 702fbc026..a9d3f9c74 100644 --- a/test/integration/issues_test.rb +++ b/test/integration/issues_test.rb @@ -38,7 +38,9 @@ class IssuesTest < ActionController::IntegrationTest def test_issue_attachements log_user('jsmith', 'jsmith') - post "issues/add_note/1", { :notes => 'Some notes', 'attachments[]' => ActionController::TestUploadedFile.new(Test::Unit::TestCase.fixture_path + '/files/testfile.txt', 'text/plain') } + post 'issues/update/1', + :notes => 'Some notes', + :attachments => ([] << ActionController::TestUploadedFile.new(Test::Unit::TestCase.fixture_path + '/files/testfile.txt', 'text/plain')) assert_redirected_to "issues/show/1" # make sure attachment was saved |