Skip to content

Commit

Permalink
test: fix [DHIS2-18451]
Browse files Browse the repository at this point in the history
Signed-off-by: Giuseppe Nespolino <[email protected]>
  • Loading branch information
gnespolino committed Dec 11, 2024
1 parent c018ea7 commit 5011841
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public class OptionSetQuery implements DataItemQuery {
Pair.of("item_type", "cast ('OPTION_SET' as text)"),
Pair.of("expression", CAST_NULL_AS_TEXT))
.stream()
.map(pair -> pair.getLeft() + " as " + pair.getRight())
.map(pair -> pair.getRight() + " as " + pair.getLeft())
.collect(Collectors.joining(", "));

/**
Expand Down

0 comments on commit 5011841

Please sign in to comment.