Bug 15774: (follow-up) Address QA issues
[koha.git] / t / Koha_Template_Plugin_Koha.t
index 950257c..e0e5ed2 100644 (file)
@@ -52,6 +52,7 @@ subtest "Koha::Template::Plugin::Koha::Version tests" => sub {
     my $res = Koha::Template::Plugin::Koha::Version( $version );
     is_deeply( $res, {
         major       => $major,
+        minor       => $minor,
         release     => $major . "." . $minor,
         maintenance => $major . "." . $minor . "." . $maintenance,
         development => $development
@@ -67,6 +68,7 @@ subtest "Koha::Template::Plugin::Koha::Version tests" => sub {
     $res = Koha::Template::Plugin::Koha::Version( $version );
     is_deeply( $res, {
         major       => $major,
+        minor       => $minor,
         release     => $major . "." . $minor,
         maintenance => $major . "." . $minor . "." . $maintenance,
         development => undef
@@ -74,4 +76,3 @@ subtest "Koha::Template::Plugin::Koha::Version tests" => sub {
 
 };
 
-1;