summaryrefslogtreecommitdiffstats
path: root/t/04_find_archives.t
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2017-04-01 20:23:16 +0200
committerFlorian Pritz <bluewind@xinu.at>2017-04-01 20:23:16 +0200
commitb83c55e97fa95713f66198c42577c284036ecefa (patch)
tree589346f372d83ada4d56e278292a4d708e0e1e65 /t/04_find_archives.t
parent4d1540fe2acabc69ff5426e28a3b45762318de5d (diff)
downloadApp-BorgRestore-b83c55e97fa95713f66198c42577c284036ecefa.tar.gz
App-BorgRestore-b83c55e97fa95713f66198c42577c284036ecefa.tar.xz
Do not pass $opts to main class
The only reason this was done, was for the debug output. This no longer requires large amounts of memory or time (simple count(*) in the db now) so this is no longer necessary. Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 't/04_find_archives.t')
-rw-r--r--t/04_find_archives.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/04_find_archives.t b/t/04_find_archives.t
index 2d40eef..7f0186a 100644
--- a/t/04_find_archives.t
+++ b/t/04_find_archives.t
@@ -17,7 +17,7 @@ $db->mock('get_archives_for_path', sub {return [
{ modification_time => 15, archive => "test5"},
];});
-my $app = App::BorgRestore->new_no_defaults({}, {db => $db});
+my $app = App::BorgRestore->new_no_defaults({db => $db});
eq_or_diff($app->find_archives('test/path'), [
{archive => 'test1', modification_time => 2},