We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19e7c04 commit 9283080Copy full SHA for 9283080
tests/testthat/test_cwb_encode.R
@@ -78,7 +78,10 @@ test_that(
78
79
expect_true(cl_load_corpus(corpus = "BT", registry = get_tmp_registry()))
80
expect_true(tolower("BT") %in% cl_list_corpora())
81
- expect_true(cqp_load_corpus(corpus = "BT", registry = get_tmp_registry()))
+
82
+ # In the CQP context, corpus IDs are uppered - here we knowingly provide
83
+ # a lowercase ID that is uppered internally #64
84
+ expect_true(cqp_load_corpus(corpus = "bt", registry = get_tmp_registry()))
85
expect_true("BT" %in% cqp_list_corpora())
86
87
for (p_attr in c("word", "pos", "lemma")){
0 commit comments