Skip to content

Commit 29c73be

Browse files
authored
fix typo (#1918)
1 parent 6d33469 commit 29c73be

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

R/reporter.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#' Manage test reporting
22
#'
33
#' The job of a reporter is to aggregate the results from files, tests, and
4-
#' expectations and display them in an informative way. Every testtthat function
4+
#' expectations and display them in an informative way. Every testthat function
55
#' that runs multiple tests provides a `reporter` argument which you can
66
#' use to override the default (which is selected by [default_reporter()]).
77
#'

man/Reporter.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/special-files.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ In principle, you should be able to be run your test files in any order or even
3333

3434
## Helper files
3535

36-
Helper files live in `tests/testtthat/`, start with `helper`, and end with `.r` or `.R`.
36+
Helper files live in `tests/testthat/`, start with `helper`, and end with `.r` or `.R`.
3737
They are sourced by `devtools::load_all()` (so they're available interactively when developing your packages) and by `test_check()` and friends (so that they're available no matter how your tests are executed).
3838

3939
Helper files are a useful place for functions that you've extracted from repeated code in your tests, whether that be test fixtures (`vignette("test-fixtures")`), custom expectations (`vignette("custom-expectations")`), or skip helpers (`vignette("skipping")`).

0 commit comments

Comments
 (0)