Skip to content

Commit

Permalink
Better place for test
Browse files Browse the repository at this point in the history
  • Loading branch information
MeneDev committed Dec 2, 2024
1 parent bf22186 commit 24a77ae
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
ONLY="*"
fi
ONLY="*test_011_1*"
ONLY="*test_016*"
if [[ "${{ github.event.inputs.test_mode }}" == 'Run all' ]]
then
Expand Down
4 changes: 2 additions & 2 deletions pkg/xml/xml.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
package xml

import (
"encoding/xml"
"fmt"
"io"
"regexp"
Expand Down Expand Up @@ -255,5 +254,6 @@ func (n *xmlNode) writeTag(w io.Writer, indent uint8, attributes string, openTag

// writeValue prints XML value into io.Writer
func (n *xmlNode) writeValue(w io.Writer, value string) {
xml.EscapeText(w, []byte(value))
util.Fprintf(w, "%s", value)
//xml.EscapeText(w, []byte(value))
}
2 changes: 1 addition & 1 deletion tests/e2e/manifests/chi/test-016-settings-07.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
users:
user2/profile: default
user2/quota: default
user2/password: l%XubpKqz2y!QsKlsynEEE6#Thknj&fG
user2/password: needs<Xml&escaping # test for xml-special characters
user2/networks/ip: "::/0"
settings:
macros/layer: "03"
Expand Down

0 comments on commit 24a77ae

Please sign in to comment.