Skip to content

Commit bd5c1bf

Browse files
committed
renamed load_list() to load_database() (doc)
1 parent ab2307c commit bd5c1bf

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Diff for: man/save_plotly.Rd

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: man/table_format.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: tests/testthat/test-split_mixed.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ edc_options(edc_lookup_overwrite_warn=FALSE)
44

55

66
test_that("Split mixed", {
7-
tm = edc_example(N=100)
7+
db = edc_example(N=100)
88

99
#all datasets
10-
mixed_data_all = edc_split_mixed(tm, verbose=FALSE)
10+
mixed_data_all = edc_split_mixed(db, verbose=FALSE)
1111
expect_equal(edc_lookup(dataset)$dataset,
1212
c("ae", "ae_long", "ae_short", "db1", "db2", "db3", "enrol", "long_mixed",
1313
"long_mixed_long", "long_mixed_short", "long_pure", "short"))
1414

1515
#tidyselection
16-
mixed_data = edc_split_mixed(tm, c(short, "enrol", starts_with("long")), verbose=FALSE)
16+
mixed_data = edc_split_mixed(db, c(short, "enrol", starts_with("long")), verbose=FALSE)
1717

1818
expect_equal(edc_lookup(dataset)$dataset,
1919
c("ae", "db1", "db2", "db3", "enrol", "long_mixed", "long_mixed_long",

0 commit comments

Comments
 (0)