summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rebar_eunit.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rebar_eunit.erl b/src/rebar_eunit.erl
index c674ad9..55f1097 100644
--- a/src/rebar_eunit.erl
+++ b/src/rebar_eunit.erl
@@ -525,7 +525,8 @@ align_notcovered_count(Module, Covered, NotCovered, true) ->
cover_write_index(Coverage, SrcModules) ->
{ok, F} = file:open(filename:join([?EUNIT_DIR, "index.html"]), [write]),
ok = file:write(F, "<!DOCTYPE HTML><html>\n" ++
- "<head><meta charset=\"utf-8\"><title>Coverage Summary</title></head>\n" ++
+ "<head><meta charset=\"utf-8\">" ++
+ "<title>Coverage Summary</title></head>\n" ++
"<body>\n"),
IsSrcCoverage = fun({Mod,_C,_N}) -> lists:member(Mod, SrcModules) end,
{SrcCoverage, TestCoverage} = lists:partition(IsSrcCoverage, Coverage),