diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-01-24 15:08:34 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-01-24 15:08:34 +0100 |
commit | 4c39a197c654196b39e528f80080d10a2c3e6f92 (patch) | |
tree | ed7b998f1f2d866b6c51834d141d3347de5ebe59 /t | |
parent | 5a0d80e685a0172500bf17dbb1e0c27037e58b0b (diff) | |
download | App-BorgRestore-4c39a197c654196b39e528f80080d10a2c3e6f92.tar.gz App-BorgRestore-4c39a197c654196b39e528f80080d10a2c3e6f92.tar.xz |
t/parsing: Fix unmocked method verify_cache_fill_rate_ok warning
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 't')
-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 []}); |