From 5eb513e0df21875d308af3dea6aa6b48e4642a93 Mon Sep 17 00:00:00 2001 From: Marco Pessotto Date: Mon, 21 Oct 2024 09:55:26 +0200 Subject: [PATCH] Fix missing Data::Dumper loading in jobs.t --- t/jobs.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/jobs.t b/t/jobs.t index 8f850ba4e..61bcf191f 100644 --- a/t/jobs.t +++ b/t/jobs.t @@ -6,6 +6,7 @@ use Test::More tests => 33; BEGIN { $ENV{DBIX_CONFIG_DIR} = "t" }; use File::Spec::Functions qw/catdir catfile/; use lib catdir(qw/t lib/); +use Data::Dumper::Concise; use AmuseWiki::Tests qw/create_site/; use AmuseWikiFarm::Schema; use AmuseWikiFarm::Utils::Jobber;