diff options
Diffstat (limited to 't/02-JournalCtl.t')
-rw-r--r-- | t/02-JournalCtl.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/02-JournalCtl.t b/t/02-JournalCtl.t index 4826ad4..3eb5212 100644 --- a/t/02-JournalCtl.t +++ b/t/02-JournalCtl.t @@ -4,10 +4,10 @@ use warnings FATAL => 'all'; use Test::More; BEGIN { - use_ok( 'AdminPanel::Shared::JournalCtl' ) || print "JournalCtl failed!\n"; + use_ok( 'ManaTools::Shared::JournalCtl' ) || print "JournalCtl failed!\n"; } - ok( my $o = AdminPanel::Shared::JournalCtl->new(this_boot=>1,), 'create'); + ok( my $o = ManaTools::Shared::JournalCtl->new(this_boot=>1,), 'create'); ok( my $c = $o->getLog(), 'gets_log' ); done_testing; |