From 90128ad9fe392cb65df3f8e4e6889373949d9328 Mon Sep 17 00:00:00 2001 From: Chris Bono Date: Sun, 18 Sep 2022 23:20:14 -0500 Subject: [PATCH] [CI] Add fake test to trigger CI --- .../org/springframework/pulsar/core/PulsarTopicTests.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/spring-pulsar/src/test/java/org/springframework/pulsar/core/PulsarTopicTests.java b/spring-pulsar/src/test/java/org/springframework/pulsar/core/PulsarTopicTests.java index 470aee0f..e1c54976 100644 --- a/spring-pulsar/src/test/java/org/springframework/pulsar/core/PulsarTopicTests.java +++ b/spring-pulsar/src/test/java/org/springframework/pulsar/core/PulsarTopicTests.java @@ -43,6 +43,11 @@ public class PulsarTopicTests { assertThat(topic.numberOfPartitions()).isEqualTo(0); } + @Test + void fakeTestToVerifyReleasePipeline() { + + } + @ParameterizedTest @MethodSource("topicComponentsProvider") void topicComponents(PulsarTopic topic, TopicDomain domain, String tenant, String namespace, String topicName) {