Skip to content

Commit

Permalink
Style code (GHA)
Browse files Browse the repository at this point in the history
  • Loading branch information
elong0527 committed Oct 24, 2023
1 parent 43fa6d6 commit bb4ba51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/meta_run.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#' @export
#'
#' @examples
#' if(interactive()){
#' if (interactive()) {
#' meta <- meta_example()
#' ae_summary <- function(...) {
#' "results of ae_summary"
Expand Down
4 changes: 2 additions & 2 deletions tests/testthat/test-independent-testing-meta_run.R
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Create example `meta_adam` object
meta <- meta_example()

ae_summary <- function(meta, population, observation, parameter){
ae_summary <- function(meta, population, observation, parameter) {
message("run ae_summary")
return(NULL)
}

ae_specific <- function(meta, population, observation, parameter){
ae_specific <- function(meta, population, observation, parameter) {
message("run ae_specific")
return(NULL)
}
Expand Down

0 comments on commit bb4ba51

Please sign in to comment.