Skip to content

Commit

Permalink
Issue #192: fix spelling: UitTest => UnitTest
Browse files Browse the repository at this point in the history
Understandably the module would not load when misspelled
  • Loading branch information
bschmalhofer committed Sep 25, 2020
1 parent beb7759 commit fc98986
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions scripts/test/UnitTest.t
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@

use strict;
use warnings;
use v5.24;
use utf8;

# Set up the test driver $Self when we are running as a standalone script.
use Kernel::System::UitTest::RegisterDriver;

use vars (qw($Self));

use Kernel::System::UnitTest::RegisterDriver;
use Kernel::System::UnitTest;

our $Self;

my $UnitTestObject = Kernel::System::UnitTest::Driver->new(
SelfTest => 1,
);
Expand Down Expand Up @@ -296,7 +296,4 @@ for my $Value1 ( \%Hash1, \%Hash2, \@List1, \@List2, \$Scalar1, \$Scalar2 ) {
}
}


$Self->DoneTesting();


0 comments on commit fc98986

Please sign in to comment.