Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit 2399e65

Browse files
committed
Add two new failing tests (sorry :))
1 parent 098884a commit 2399e65

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// TODO: this triggers a Duplicate variable error
2+
// Caused by: Duplicate variable [syntax node type_identifier (3, 5)].value set at (553, 14) and (553, 14)
3+
// Unclear to me why it lists that line/row twice?
4+
public class RepairScanner implements MessageStateProcessor {
5+
private Map<TopicPartition, OffsetAndMetadata> fetchRelayOffsets() {
6+
Map<TopicPartition, OffsetAndMetadata> offsets = Collections.emptyMap();
7+
}
8+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
public class TypeIdentifierTest {
2+
public boolean checkVersion(String app, int version) {
3+
Map<String, String> keys = vaultClient.getSecrets(API_KEYS_FILTER);
4+
return true;
5+
}
6+
}

0 commit comments

Comments
 (0)