From d119ef6a38ad09c3c29fa0de8a078268ffe1377d Mon Sep 17 00:00:00 2001 From: Maximilian Grundke Date: Sat, 23 Sep 2017 09:10:26 +0200 Subject: [PATCH] Fix message name --- app/views/request_for_comments/show.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/request_for_comments/show.html.erb b/app/views/request_for_comments/show.html.erb index 156543c1..78f9accc 100644 --- a/app/views/request_for_comments/show.html.erb +++ b/app/views/request_for_comments/show.html.erb @@ -47,7 +47,7 @@
<%= t('request_for_comments.runtime_output') %>
<% output_runs.each do |testrun| %> -

<%= testrun.try(:message) or t('request_for_comments.no_output') %>

+

<%= testrun.try(:output) or t('request_for_comments.no_output') %>

<% end %>
<% end %>