@@ -332,7 +332,7 @@ func TestConcurrentSubscribeMultipleTopics(
332
332
receivedMessagesCh := make (chan message.Messages , topicsCount )
333
333
334
334
for i := 0 ; i < topicsCount ; i ++ {
335
- topicName := testTopicName (tCtx .TestID ) + fmt .Sprintf ("_ %d" , i )
335
+ topicName := testTopicName (tCtx .TestID ) + fmt .Sprintf ("- %d" , i )
336
336
337
337
go func () {
338
338
defer subsWg .Done ()
@@ -850,8 +850,8 @@ func TestTopic(
850
850
pub , sub := pubSubConstructor (t )
851
851
defer closePubSub (t , pub , sub )
852
852
853
- topic1 := testTopicName (tCtx .TestID ) + "_1 "
854
- topic2 := testTopicName (tCtx .TestID ) + "_2 "
853
+ topic1 := testTopicName (tCtx .TestID ) + "-1 "
854
+ topic2 := testTopicName (tCtx .TestID ) + "-2 "
855
855
856
856
if subscribeInitializer , ok := sub .(message.SubscribeInitializer ); ok {
857
857
require .NoError (t , subscribeInitializer .SubscribeInitialize (topic1 ))
@@ -1214,7 +1214,7 @@ func assertConsumerGroupReceivedMessages(
1214
1214
}
1215
1215
1216
1216
func testTopicName (testID TestID ) string {
1217
- return "topic_ " + string (testID )
1217
+ return "topic- " + string (testID )
1218
1218
}
1219
1219
1220
1220
func closePubSub (t * testing.T , pub message.Publisher , sub message.Subscriber ) {
0 commit comments