forked from lix-project/hydra
fixup: TT.t: move the :'s to the next line
This commit is contained in:
parent
b06457c75c
commit
ce6805f02b
14
t/View/TT.t
14
t/View/TT.t
|
@ -37,15 +37,15 @@ is(
|
||||||
);
|
);
|
||||||
is(
|
is(
|
||||||
Hydra::View::TT::linkToJobset(undef, $c, $jobset),
|
Hydra::View::TT::linkToJobset(undef, $c, $jobset),
|
||||||
'<a href="http://localhost/project/tests">tests</a>:'
|
'<a href="http://localhost/project/tests">tests</a>'
|
||||||
. '<a href="http://localhost/jobset/tests/example">example</a>',
|
. ':<a href="http://localhost/jobset/tests/example">example</a>',
|
||||||
"linkToJobset"
|
"linkToJobset"
|
||||||
);
|
);
|
||||||
is(
|
is(
|
||||||
Hydra::View::TT::linkToJob(undef, $c, $jobset, $job),
|
Hydra::View::TT::linkToJob(undef, $c, $jobset, $job),
|
||||||
'<a href="http://localhost/project/tests">tests</a>:'
|
'<a href="http://localhost/project/tests">tests</a>'
|
||||||
. '<a href="http://localhost/jobset/tests/example">example</a>:'
|
. ':<a href="http://localhost/jobset/tests/example">example</a>'
|
||||||
. '<a href="http://localhost/job/tests/example/myjob">myjob</a>',
|
. ':<a href="http://localhost/job/tests/example/myjob">myjob</a>',
|
||||||
"linkToJob"
|
"linkToJob"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -57,8 +57,8 @@ is(
|
||||||
);
|
);
|
||||||
is(
|
is(
|
||||||
Hydra::View::TT::makeNameLinksForJob(undef, $c, $jobset, $job),
|
Hydra::View::TT::makeNameLinksForJob(undef, $c, $jobset, $job),
|
||||||
'<a href="http://localhost/project/tests">tests</a>:'
|
'<a href="http://localhost/project/tests">tests</a>'
|
||||||
. '<a href="http://localhost/jobset/tests/example">example</a>'
|
. ':<a href="http://localhost/jobset/tests/example">example</a>'
|
||||||
. ':myjob',
|
. ':myjob',
|
||||||
"makeNameLinksForJob"
|
"makeNameLinksForJob"
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue