Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
s3alfisc committed Sep 13, 2023
1 parent 000dae1 commit 2f274a8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions R/boottest_felm.R
Original file line number Diff line number Diff line change
Expand Up @@ -467,9 +467,9 @@ boottest.felm <- function(object,
"The heteroskedastic bootstrap is only supported for `engine = 'R-lean'`,
Resetting the engine argument to 'R-lean'."
)
} else {
heteroskedastic <- FALSE
}
} else {
heteroskedastic <- FALSE
}

check_bootstrap_types(
Expand Down
4 changes: 2 additions & 2 deletions R/boottest_fixest.R
Original file line number Diff line number Diff line change
Expand Up @@ -493,9 +493,9 @@ boottest.fixest <- function(object,
"The heteroskedastic bootstrap is only supported for `engine = 'R-lean'`,
Resetting the engine argument to 'R-lean'."
)
} else {
heteroskedastic <- FALSE
}
} else {
heteroskedastic <- FALSE
}

check_bootstrap_types(
Expand Down
4 changes: 2 additions & 2 deletions R/boottest_lm.R
Original file line number Diff line number Diff line change
Expand Up @@ -420,9 +420,9 @@ boottest.lm <- function(object,
"The heteroskedastic bootstrap is only supported for `engine = 'R-lean'`,
Resetting the engine argument to 'R-lean'."
)
} else {
heteroskedastic <- FALSE
}
} else {
heteroskedastic <- FALSE
}

check_bootstrap_types(
Expand Down

0 comments on commit 2f274a8

Please sign in to comment.