Skip to content

Commit

Permalink
version 3.2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley authored and cran-robot committed Apr 14, 2024
1 parent d6dec4f commit 0c2c0a2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: testthat
Title: Unit Testing for R
Version: 3.2.1
Version: 3.2.1.1
Authors@R: c(
person("Hadley", "Wickham", , "hadley@posit.co", role = c("aut", "cre")),
person("Posit Software, PBC", role = c("cph", "fnd")),
Expand Down Expand Up @@ -31,10 +31,10 @@ Config/testthat/start-first: watcher, parallel*
Encoding: UTF-8
RoxygenNote: 7.2.3
NeedsCompilation: yes
Packaged: 2023-11-30 22:07:21 UTC; hadleywickham
Packaged: 2024-04-14 03:24:27 UTC; ripley
Author: Hadley Wickham [aut, cre],
Posit Software, PBC [cph, fnd],
R Core team [ctb] (Implementation of utils::recover())
Maintainer: Hadley Wickham <hadley@posit.co>
Repository: CRAN
Date/Publication: 2023-12-02 11:50:05 UTC
Date/Publication: 2024-04-14 05:24:52
4 changes: 2 additions & 2 deletions MD5
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
7a02630a3e38f7521fb5c44a3f697a8a *DESCRIPTION
7ad03c426643c38668b5fe0673a9a970 *DESCRIPTION
d0b909bd833cd58ea0430eda333b6447 *LICENSE
98b8d9fa7a3c0f90c19158aa47ec85f1 *NAMESPACE
b682a5016b2f64f2b8704f47aa54c3eb *NEWS.md
Expand Down Expand Up @@ -113,7 +113,7 @@ af81cec28b15f4d3eabd29e378b024ed *inst/doc/third-edition.Rmd
1ece0759f60e98193d53545648d19146 *inst/examples/test-failure.R
522cf134c79624117d579f2c4d18f42b *inst/examples/test-success.R
543392950ccc39ed50ebf26c75de0910 *inst/include/testthat.h
5058228172d50a29a234414c78b25399 *inst/include/testthat/testthat.h
05f098fedb1fe85ee85de806f711779f *inst/include/testthat/testthat.h
b5816f117a5460c67e3e08b1c23dacbc *inst/include/testthat/vendor/catch.h
f481e7613929d4968a4a4c73031f7967 *inst/resources/catch-routine-registration.R
f35a879e88834e75aee99fc9817547a0 *inst/resources/test-cpp.R
Expand Down
4 changes: 2 additions & 2 deletions inst/include/testthat/testthat.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ inline std::ostream& cerr()
extern "C" SEXP run_testthat_tests(SEXP use_xml_sxp) {
bool use_xml = LOGICAL(use_xml_sxp)[0];
bool success = testthat::run_tests(use_xml);
return ScalarLogical(success);
return Rf_ScalarLogical(success);
}

# endif // TESTTHAT_TEST_RUNNER
Expand All @@ -198,7 +198,7 @@ extern "C" SEXP run_testthat_tests(SEXP use_xml_sxp) {
# include <R.h>
# include <Rinternals.h>
extern "C" SEXP run_testthat_tests() {
return ScalarLogical(true);
return Rf_ScalarLogical(true);
}

# endif // TESTTHAT_TEST_RUNNER
Expand Down

0 comments on commit 0c2c0a2

Please sign in to comment.