Skip to content

Commit 50a9fed

Browse files
committed
Remove outdated comments
1 parent 76107ba commit 50a9fed

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

fdb-record-layer-core/src/test/java/com/apple/foundationdb/record/provider/foundationdb/keyspace/KeySpaceDirectoryTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1565,7 +1565,6 @@ private List<Long> resolveBatch(FDBRecordContext context, String... names) {
15651565

15661566
private static final Map<KeySpaceDirectory.KeyType, KeyPathValues> VALUES = Map.of(
15671567
KeySpaceDirectory.KeyType.NULL, new KeyPathValues(() -> null,
1568-
// TODO add("v" null) should work for a constant of null and we should test that
15691568
List.of(), List.of("not_null", 42, true)),
15701569
KeySpaceDirectory.KeyType.STRING, new KeyPathValues(() -> "foo",
15711570
List.of("bar", ""), List.of(3, "foo".getBytes(), true, 3.14)),
@@ -1596,7 +1595,6 @@ void testAllKeyTypesAreCovered() {
15961595

15971596
static Stream<Arguments> testValidateConstant() {
15981597
return VALUES.entrySet().stream()
1599-
// Skip BYTES for constant value testing since array equality doesn't use .equals()
16001598
.flatMap(entry -> Stream.concat(
16011599
Stream.concat(entry.getValue().otherValidValues.stream(), entry.getValue().invalidValues.stream())
16021600
.map(valueToAdd -> Arguments.of(entry.getKey(), entry.getValue().value.get(), valueToAdd, false)),

0 commit comments

Comments
 (0)