diff --git a/LANGUAGES.md b/LANGUAGES.md index 552515a1..5a3b9842 100644 --- a/LANGUAGES.md +++ b/LANGUAGES.md @@ -75,7 +75,6 @@ Expect (exp) Extensible Stylesheet Language Transformations (xslt,xsl) F# (fs,fsi,fsx,fsscript) F* (fst) -Factor (factor) Fennel (fnl) FIDL (fidl) Fish (fish) diff --git a/SCC-OUTPUT-REPORT.html b/SCC-OUTPUT-REPORT.html index bda9693a..a0653792 100644 --- a/SCC-OUTPUT-REPORT.html +++ b/SCC-OUTPUT-REPORT.html @@ -12,12 +12,12 @@ Go 36 - 9188 + 9173 1459 443 - 7286 + 7271 1506 - 372213 + 371848 Java 24 @@ -39,12 +39,12 @@ Markdown 11 - 1430 + 1427 340 0 - 1090 + 1087 0 - 57882 + 57802 Python 10 @@ -435,12 +435,12 @@ JSON 1 - 8057 - 0 + 8330 + 8 0 - 8057 + 8322 0 - 112889 + 116692 Korn Shell 1 @@ -679,11 +679,11 @@ Total 187 - 30108 - 3378 + 30363 + 3386 1933 - 24797 + 25044 2662 - 1913776 + 1917134 \ No newline at end of file diff --git a/processor/formatters_test.go b/processor/formatters_test.go index a5c33c91..8c512e26 100644 --- a/processor/formatters_test.go +++ b/processor/formatters_test.go @@ -740,7 +740,6 @@ func TestToOpenMetricsMultiple(t *testing.T) { var expectedResult = `# TYPE scc_files count # HELP scc_files Number of sourcecode files. # TYPE scc_lines count -# UNIT scc_lines lines # HELP scc_lines Number of lines. # TYPE scc_code count # HELP scc_code Number of lines of actual code. @@ -760,7 +759,6 @@ scc_comments{language="Go"} 2000 scc_blanks{language="Go"} 2000 scc_complexity{language="Go"} 2000 scc_bytes{language="Go"} 2000 -# EOF ` if res != expectedResult { @@ -974,7 +972,6 @@ func TestFileSummarizeOpenMetrics(t *testing.T) { var expectedResult = `# TYPE scc_files count # HELP scc_files Number of sourcecode files. # TYPE scc_lines count -# UNIT scc_lines lines # HELP scc_lines Number of lines. # TYPE scc_code count # HELP scc_code Number of lines of actual code. @@ -994,7 +991,6 @@ scc_comments{language="Go"} 1000 scc_blanks{language="Go"} 1000 scc_complexity{language="Go"} 1000 scc_bytes{language="Go"} 1000 -# EOF ` if res != expectedResult { @@ -1028,7 +1024,6 @@ func TestFileSummarizeOpenMetricsPerFile(t *testing.T) { var expectedResult = `# TYPE scc_files count # HELP scc_files Number of sourcecode files. # TYPE scc_lines count -# UNIT scc_lines lines # HELP scc_lines Number of lines. # TYPE scc_code count # HELP scc_code Number of lines of actual code. @@ -1047,7 +1042,7 @@ scc_comments{language="Go",file="C:\\bbbb.go"} 1000 scc_blanks{language="Go",file="C:\\bbbb.go"} 1000 scc_complexity{language="Go",file="C:\\bbbb.go"} 1000 scc_bytes{language="Go",file="C:\\bbbb.go"} 1000 -` +# EOF` if res != expectedResult { t.Error("Expected OpenMetrics return", res)