Bugzilla – Attachment 35685 Details for
Bug 13262
Add parameters to XSLT Handler transform method
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13262: (QA followup) fix duplicate variable definition
Bug-13262-QA-followup-fix-duplicate-variable-defin.patch (text/plain), 1.11 KB, created by
Tomás Cohen Arazi (tcohen)
on 2015-02-05 18:28:07 UTC
(
hide
)
Description:
Bug 13262: (QA followup) fix duplicate variable definition
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2015-02-05 18:28:07 UTC
Size:
1.11 KB
patch
obsolete
>From 42c342972ab9aed7f3674be4fc226a4806cb5ffc Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@gmail.com> >Date: Thu, 5 Feb 2015 15:25:50 -0300 >Subject: [PATCH] Bug 13262: (QA followup) fix duplicate variable definition > >Running > > $ prove t/db_dependent/XSLT_Handler.t > >raises a couple warnings because of variable redefinitions. This small patch fixes that. > >Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com> >--- > t/db_dependent/XSLT_Handler.t | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/t/db_dependent/XSLT_Handler.t b/t/db_dependent/XSLT_Handler.t >index 572ee25..40274b0 100644 >--- a/t/db_dependent/XSLT_Handler.t >+++ b/t/db_dependent/XSLT_Handler.t >@@ -176,7 +176,7 @@ $output = $engine->transform({ > xml => $xml_1, > file => $xsltfile_4, > }); >-my $dom = XML::LibXML->load_xml(string => $output); >-my $result = $dom->find( '/just_a_tagname' ); >+$dom = XML::LibXML->load_xml(string => $output); >+$result = $dom->find( '/just_a_tagname' ); > is ( $result->to_literal(), '', "As expected, no XSLT parameters/variables were added"); > #End of tests >-- >1.9.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 13262
:
33608
|
33609
|
33967
|
33978
|
34915
|
35566
| 35685