Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
Fix MetadataUtilsTest
Browse files Browse the repository at this point in the history
  • Loading branch information
BewareMyPower committed May 21, 2021
1 parent 49eabbb commit 5634ef3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public void testCreateKafkaMetadataIfMissing() throws Exception {
verify(mockTenants, times(1)).updateTenant(eq(conf.getKafkaMetadataTenant()), any(TenantInfo.class));
verify(mockNamespaces, times(2)).setNamespaceReplicationClusters(eq(conf.getKafkaMetadataTenant()
+ "/" + conf.getKafkaMetadataNamespace()), any(Set.class));
verify(mockTopics, times(2)).createNonPartitionedTopic(contains(offsetsTopic.getOriginalName()));
verify(mockTopics, times(2)).createNonPartitionedTopic(contains(txnTopic.getOriginalName()));
verify(mockTopics, times(1)).createMissedPartitions(contains(offsetsTopic.getOriginalName()));
verify(mockTopics, times(1)).createMissedPartitions(contains(txnTopic.getOriginalName()));
}
}

0 comments on commit 5634ef3

Please sign in to comment.