From b83c55e97fa95713f66198c42577c284036ecefa Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sat, 1 Apr 2017 20:23:16 +0200 Subject: 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 --- t/02_parsing.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't/02_parsing.t') diff --git a/t/02_parsing.t b/t/02_parsing.t index 9ff0a5c..8f3bcfb 100644 --- a/t/02_parsing.t +++ b/t/02_parsing.t @@ -27,7 +27,7 @@ $borg->mock('list_archive', sub { } ); # Call the actual function we want to test -my $app = App::BorgRestore->new({}, {borg => $borg, db => $db}); +my $app = App::BorgRestore->new({borg => $borg, db => $db}); $app->handle_added_archives(['archive-1'], $db); # Check if $db->add_path has been called properly -- cgit v1.2.3-24-g4f1b