diff options
-rw-r--r-- | t/02_parsing.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/02_parsing.t b/t/02_parsing.t index 407dfd9..c2b8e78 100644 --- a/t/02_parsing.t +++ b/t/02_parsing.t @@ -10,7 +10,7 @@ use App::BorgRestore; # Only log calls to $db->add_path my $db = Test::MockObject->new(); -$db->set_true(qw(add_path -begin_work -commit -vacuum -add_archive_name)); +$db->set_true(qw(add_path -begin_work -commit -vacuum -add_archive_name -verify_cache_fill_rate_ok)); $db->mock('-get_archive_id', sub {return 'prefix-archive-1' if $_[1] eq 'archive-1';}); $db->mock('-get_archive_names', sub {return []}); |