@@ -681,7 +681,7 @@ test_that("can assign shaped base vectors with compact seqs", {
681681 expect_identical(vec_assign_seq(mat(lgl(1 , 0 , 1 )), NA , start , size , increasing ), mat(lgl(1 , NA , NA )))
682682 expect_identical(vec_assign_seq(mat(int(1 , 2 , 3 )), NA , start , size , increasing ), mat(int(1 , NA , NA )))
683683 expect_identical(vec_assign_seq(mat(dbl(1 , 2 , 3 )), NA , start , size , increasing ), mat(dbl(1 , NA , NA )))
684- expect_identical(vec_assign_seq(mat(cpl (1 , 2 , 3 )), NA , start , size , increasing ), mat(cpl (1 , NA , NA )))
684+ expect_identical(vec_assign_seq(mat(cpl2 (1 , 2 , 3 )), NA , start , size , increasing ), mat(cpl2 (1 , NA , NA )))
685685 expect_identical(vec_assign_seq(mat(chr(" 1" , " 2" , " 3" )), NA , start , size , increasing ), mat(chr(" 1" , NA , NA )))
686686 expect_identical(vec_assign_seq(mat(raw2(1 , 2 , 3 )), raw2(1 ), start , size , increasing ), mat(raw2(1 , 1 , 1 )))
687687 expect_identical(vec_assign_seq(mat(list (1 , 2 , 3 )), NA , start , size , increasing ), mat(list (1 , NULL , NULL )))
@@ -695,7 +695,7 @@ test_that("can assign shaped base vectors with decreasing compact seqs", {
695695 expect_identical(vec_assign_seq(mat(lgl(1 , 0 , 1 )), NA , start , size , increasing ), mat(lgl(1 , NA , NA )))
696696 expect_identical(vec_assign_seq(mat(int(1 , 2 , 3 )), NA , start , size , increasing ), mat(int(1 , NA , NA )))
697697 expect_identical(vec_assign_seq(mat(dbl(1 , 2 , 3 )), NA , start , size , increasing ), mat(dbl(1 , NA , NA )))
698- expect_identical(vec_assign_seq(mat(cpl (1 , 2 , 3 )), NA , start , size , increasing ), mat(cpl (1 , NA , NA )))
698+ expect_identical(vec_assign_seq(mat(cpl2 (1 , 2 , 3 )), NA , start , size , increasing ), mat(cpl2 (1 , NA , NA )))
699699 expect_identical(vec_assign_seq(mat(chr(" 1" , " 2" , " 3" )), NA , start , size , increasing ), mat(chr(" 1" , NA , NA )))
700700 expect_identical(vec_assign_seq(mat(raw2(1 , 2 , 3 )), raw2(1 ), start , size , increasing ), mat(raw2(1 , 1 , 1 )))
701701 expect_identical(vec_assign_seq(mat(list (1 , 2 , 3 )), NA , start , size , increasing ), mat(list (1 , NULL , NULL )))
0 commit comments