Skip to content

Commit

Permalink
Update ShlexTest.java with test case for '='
Browse files Browse the repository at this point in the history
  • Loading branch information
ascopes authored Jan 29, 2024
1 parent 6077e03 commit 2bb3f80
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ static Stream<Arguments> quoteShellArgsTestCases() {
arguments(list("-_"), "-_"),
arguments(list("."), "."),
arguments(list("/"), "/"),
arguments(list("="), "="),
arguments(list(","), "','"),
arguments(list("<>"), "'<>'"),
arguments(list("$"), "'$'"),
Expand Down Expand Up @@ -94,6 +95,7 @@ static Stream<Arguments> quoteBatchArgsTestCases() {
arguments(list("-_"), "-_"),
arguments(list("."), "."),
arguments(list("/"), "/"),
arguments(list("="), "="),
arguments(list("\\"), "^\\"),
arguments(list("\""), "^\""),
arguments(list("'"), "^'"),
Expand Down

0 comments on commit 2bb3f80

Please sign in to comment.