From f66fbc7464cf2a6fa3c0f555fc3c5ba40f552966 Mon Sep 17 00:00:00 2001 From: Hans Krutzer Date: Tue, 23 Jul 2024 08:25:42 +0200 Subject: [PATCH] Fix Elixir 1.17 single-quoted string warning (#327) --- lib/templates/html/htmlcov/coverage.html.eex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/templates/html/htmlcov/coverage.html.eex b/lib/templates/html/htmlcov/coverage.html.eex index b501429d..a21b708f 100644 --- a/lib/templates/html/htmlcov/coverage.html.eex +++ b/lib/templates/html/htmlcov/coverage.html.eex @@ -70,7 +70,7 @@ <%= number %> - <%= ExCoveralls.Html.View.safe(line.source || ' ') %> + <%= ExCoveralls.Html.View.safe(line.source || " ") %> <% end %> <% end %>