Skip to content

Commit

Permalink
[#19] Changed default separator
Browse files Browse the repository at this point in the history
  • Loading branch information
marcingrzejszczak committed Nov 12, 2015
1 parent 57682f1 commit a364cb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class TestProfilerPluginExtension {
/**
* Separator of columns in the output report
*/
String separator = '\t'
String separator = ';'

/**
* Headers in the report
Expand Down
4 changes: 2 additions & 2 deletions src/test/groovy/integration/BasicFuncSpec.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class BasicFuncSpec extends IntegrationSpec {
}

private void summaryReportContainsValuesFromModule(String moduleName, String reportText) {
assert reportText.contains(":$moduleName\tfoo.CalculatorTest\tshould_add_two_numbers")
assert reportText.contains(":$moduleName\tfoo.CalculatorTest\tshould_subtract_a_number_from_another")
assert reportText.contains(":$moduleName;foo.CalculatorTest;should_add_two_numbers")
assert reportText.contains(":$moduleName;foo.CalculatorTest;should_subtract_a_number_from_another")
}
}

0 comments on commit a364cb2

Please sign in to comment.