Skip to content

Commit

Permalink
Fixed indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
akbertram committed Feb 17, 2017
1 parent 5c7fbd9 commit e59544e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions R/reporter-junit.R
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ JunitReporter <- R6::R6Class("JunitReporter", inherit = Reporter,
# XML node for test case
name <- test %||% "(unnamed)"
testcase <- xml2::xml_add_child(self$suite, "testcase",
time = toString(time),
classname = classnameOK(context),
name = classnameOK(name)
time = toString(time),
classname = classnameOK(context),
name = classnameOK(name)
)

# message - if failure or error
Expand Down Expand Up @@ -124,7 +124,6 @@ JunitReporter <- R6::R6Class("JunitReporter", inherit = Reporter,
} else {
stop('unsupported output type: ', toString(self$out))
}
#cat(toString(self$doc), file = self$file)
} # end_reporter
), #public

Expand Down

0 comments on commit e59544e

Please sign in to comment.