Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolas Burkoff committed Jul 22, 2022
1 parent 6b39de9 commit e0f98c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/testthat/test-MAEFilteredDataset.R
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ testthat::test_that("MAEFilteredDataset$get_call returns a call with applying fi
testthat::expect_identical(
get_call_output$subjects,
quote(
miniACC <- MultiAssayExperiment::subsetByColData(
miniACC <- MultiAssayExperiment::subsetByColData( # nolint
miniACC,
y = !is.na(miniACC$race) & miniACC$race == "white"
)
Expand Down Expand Up @@ -230,7 +230,7 @@ testthat::test_that(
isolate(dataset$get_call()),
list(
subjects = quote(
MAE <- MultiAssayExperiment::subsetByColData(
MAE <- MultiAssayExperiment::subsetByColData( # nolint
MAE,
y = MAE$vital_status == "1" &
MAE$gender == "female"
Expand Down Expand Up @@ -301,7 +301,7 @@ testthat::test_that("MAEFilteredDataset filters removed using remove_filters", {
isolate(filtered_dataset$get_call()),
list(
subjects = quote(
MAE <- MultiAssayExperiment::subsetByColData(
MAE <- MultiAssayExperiment::subsetByColData( # nolint
MAE,
y = MAE$years_to_birth >= 30 & MAE$years_to_birth <= 50 &
MAE$vital_status == "1" &
Expand Down

0 comments on commit e0f98c1

Please sign in to comment.