From ce6805f02b491d9a6cc0b74e00d749d7d7e2b0a6 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 22 Nov 2021 16:00:58 -0500 Subject: [PATCH] fixup: TT.t: move the :'s to the next line --- t/View/TT.t | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/t/View/TT.t b/t/View/TT.t index 346879a1..118654fc 100644 --- a/t/View/TT.t +++ b/t/View/TT.t @@ -37,15 +37,15 @@ is( ); is( Hydra::View::TT::linkToJobset(undef, $c, $jobset), - 'tests:' - . 'example', + 'tests' + . ':example', "linkToJobset" ); is( Hydra::View::TT::linkToJob(undef, $c, $jobset, $job), - 'tests:' - . 'example:' - . 'myjob', + 'tests' + . ':example' + . ':myjob', "linkToJob" ); @@ -57,8 +57,8 @@ is( ); is( Hydra::View::TT::makeNameLinksForJob(undef, $c, $jobset, $job), - 'tests:' - . 'example' + 'tests' + . ':example' . ':myjob', "makeNameLinksForJob" );