@@ -189,17 +189,20 @@ furrr_test_that("size one recycling works", {
189189 )
190190})
191191
192- furrr_test_that(" generally can't recycle to size zero" , {
193- expect_error(
194- future_pmap(list (1 : 2 , integer()), ~ c(.x , .y )),
195- " Can't recycle"
196- )
197-
198- expect_error(
199- future_pmap(list (integer(), 1 : 2 ), ~ c(.x , .y )),
200- " Can't recycle"
201- )
202- })
192+ # TODO: Reenable this test after future issue is fixed
193+ # https://github.com/futureverse/future/issues/820
194+ # https://github.com/futureverse/furrr/issues/307
195+ # furrr_test_that("generally can't recycle to size zero", {
196+ # expect_error(
197+ # future_pmap(list(1:2, integer()), ~ c(.x, .y)),
198+ # "Can't recycle"
199+ # )
200+ #
201+ # expect_error(
202+ # future_pmap(list(integer(), 1:2), ~ c(.x, .y)),
203+ # "Can't recycle"
204+ # )
205+ # })
203206
204207# ------------------------------------------------------------------------------
205208# Miscellaneous
@@ -237,7 +240,11 @@ furrr_test_that("unused components can be absorbed", {
237240 x
238241 }
239242
240- expect_error(future_pmap_dbl(x , fn1 ))
243+ # TODO: Reenable this test after future issue is fixed
244+ # https://github.com/futureverse/future/issues/820
245+ # https://github.com/futureverse/furrr/issues/307
246+ # expect_error(future_pmap_dbl(x, fn1))
247+
241248 expect_identical(future_pmap_dbl(x , fn2 ), c(1 , 2 ))
242249})
243250
0 commit comments