Skip to content

Commit

Permalink
Revert a change made to enhance snowflake test stability as it broke …
Browse files Browse the repository at this point in the history
…other tests. (#21494)
  • Loading branch information
rodireich authored Jan 17, 2023
1 parent 2c3be39 commit 967c428
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,7 @@ public void testDataTypes() throws Exception {
final List<AirbyteMessage> allMessages = runRead(catalog);
final UUID catalogId = runDiscover();
final Map<String, AirbyteStream> streams = getLastPersistedCatalog().getStreams().stream()
.collect(Collectors.toMap(
s -> "%s.%s".formatted(s.getNamespace(), s.getName()),
s -> s));
.collect(Collectors.toMap(AirbyteStream::getName, s -> s));
final List<AirbyteMessage> recordMessages = allMessages.stream().filter(m -> m.getType() == Type.RECORD).toList();
final Map<String, List<String>> expectedValues = new HashMap<>();
testDataHolders.forEach(testDataHolder -> {
Expand Down

0 comments on commit 967c428

Please sign in to comment.