Skip to content

Commit e8840e5

Browse files
scr-oathsparkprime
authored andcommitted
Correct the test case.
1 parent eb31544 commit e8840e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_suite/stdlib.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ std.assertEqual(std.escapeStringJson('he"llo'), '"he\\"llo"') &&
340340
std.assertEqual(std.escapeStringBash("he\"l'lo"), "'he\"l'\"'\"'lo'") &&
341341
std.assertEqual(std.escapeStringDollars('The path is ${PATH}.'), 'The path is $${PATH}.') &&
342342
std.assertEqual(std.escapeStringXML('2 < 3'), '2 &lt; 3') &&
343-
std.assertEqual(std.escapeStringXML('3 > 2'), '2 &gt; 3') &&
343+
std.assertEqual(std.escapeStringXML('3 > 2'), '3 &gt; 2') &&
344344
std.assertEqual(std.escapeStringXML('"foo"'), '&quot;foo&quot;') &&
345345
std.assertEqual(std.escapeStringXML("don't believe the hype"), 'don&apos;t believe the hype') &&
346346
std.assertEqual(std.escapeStringXML('PB&J'), 'PB&amp;J') &&

0 commit comments

Comments
 (0)