Skip to content

Commit

Permalink
Close issue scoverage#134
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip Matusak committed Sep 24, 2015
1 parent ae45037 commit 580a7fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -60,7 +60,7 @@ class CodeGrid(mFile: MeasuredFile) {
s"<pre style='font-size: 12pt; font-family: courier;'>$code</pre>"
}

private def source(mfile: MeasuredFile): String = Source.fromFile(mfile.source).mkString
private def source(mfile: MeasuredFile): String = Source.fromFile(mfile.source, "UTF-8").mkString

private def spanStart(status: StatementStatus): String = s"<span style='${cellStyle(status)}'>"

Expand Down
@@ -1,5 +1,5 @@
package coverage.sample

class Class2 {
def msg_test = println("test code")
def msg_test = println("test code ŠTEFÁNIK")
}

0 comments on commit 580a7fe

Please sign in to comment.