Skip to content

Commit

Permalink
Don't reference private visibility in the processing message
Browse files Browse the repository at this point in the history
This was no longer a true statement.
Fixes #3087
  • Loading branch information
jcoyne committed Feb 21, 2017
1 parent d4fb2d5 commit 5360370
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/locales/sufia.en.yml
Expand Up @@ -240,7 +240,7 @@ en:
works:
create:
header: "Add New %{type}"
after_create_html: "Your files are being processed by %{application_name} in the background. The metadata and access controls you specified are being applied. Files will be marked <span class=\"label label-danger\" title=\"Private\">Private</span> until this process is complete (shouldn't take too long, hang in there!). You may need to refresh this page to see these updates."
after_create_html: "Your files are being processed by %{application_name} in the background. The metadata and access controls you specified are being applied. You may need to refresh this page to see these updates."
edit:
breadcrumb: 'Edit'
form:
Expand Down
Expand Up @@ -122,7 +122,7 @@
},
uploaded_files: ['777', '888']
}
expect(flash[:notice]).to eq "Your files are being processed by Sufia in the background. The metadata and access controls you specified are being applied. Files will be marked <span class=\"label label-danger\" title=\"Private\">Private</span> until this process is complete (shouldn't take too long, hang in there!). You may need to refresh this page to see these updates."
expect(flash[:notice]).to eq "Your files are being processed by Sufia in the background. The metadata and access controls you specified are being applied. You may need to refresh this page to see these updates."
expect(response).to redirect_to main_app.curation_concerns_generic_work_path(work)
end

Expand Down Expand Up @@ -182,7 +182,7 @@
parent_id: work.id,
generic_work: { title: ['First title'] }
}
expect(flash[:notice]).to eq "Your files are being processed by Sufia in the background. The metadata and access controls you specified are being applied. Files will be marked <span class=\"label label-danger\" title=\"Private\">Private</span> until this process is complete (shouldn't take too long, hang in there!). You may need to refresh this page to see these updates."
expect(flash[:notice]).to eq "Your files are being processed by Sufia in the background. The metadata and access controls you specified are being applied. You may need to refresh this page to see these updates."
expect(response).to redirect_to main_app.curation_concerns_generic_work_path(work)
end
end
Expand Down

0 comments on commit 5360370

Please sign in to comment.