Skip to content

Commit 8743650

Browse files
committed
bugfix: removing "y" and "n" from BooleanLiteralsHelper since there are test cases using "y" as valid column names.
1 parent 6086105 commit 8743650

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

client-java/sql/src/main/java/org/evomaster/client/java/sql/heuristic/BooleanLiteralsHelper.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
public class BooleanLiteralsHelper {
1010

1111
public static final Set<String> BOOLEAN_TRUE_LITERALS = new HashSet<>(
12-
Arrays.asList("t", "true", "yes", "y", "on"));
12+
Arrays.asList("t", "true", "yes", "on"));
1313

1414
public static final Set<String> BOOLEAN_FALSE_LITERALS = new HashSet<>(
15-
Arrays.asList("f", "false", "no", "n", "off"));
15+
Arrays.asList("f", "false", "no", "off"));
1616

1717
public static final Set<String> BOOLEAN_LITERALS =
1818
Stream.concat(Stream.concat(BOOLEAN_FALSE_LITERALS.stream(),
19-
BOOLEAN_TRUE_LITERALS.stream()),
19+
BOOLEAN_TRUE_LITERALS.stream()),
2020
Stream.of("unknown"))
2121
.collect(Collectors.toSet());
2222

0 commit comments

Comments
 (0)