Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinushey committed Feb 25, 2018
1 parent bba270b commit 04e4e2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# testthat 2.0.0.9000

* Fixed an issue where the `run_testthat_tests` entrypoint would fail to
be dynamically resolved when not explicitly registered.

* ProgressReporter gains a `update_interval` parameter to control how often
updates are printed (default 0.1 s). This prevents large printing overhead
for very quick tests. (#701, @jimhester)
Expand Down
2 changes: 1 addition & 1 deletion R/test-compiled-code.R
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ get_routine <- function(package, routine) {
error = function(e) NULL
)
if (inherits(resolved, "NativeSymbolInfo")) {
return(symbol)
return(resolved)
}
}

Expand Down

2 comments on commit 04e4e2f

@samssann
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kevinushey This typo still exists in CRAN version 2.0.1. Any timeline on when this will be updated to CRAN?

@kevinushey
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, I'm not sure.

Please sign in to comment.