Skip to content

Commit 38834fb

Browse files
committed
fix topic_id
1 parent 0527f2d commit 38834fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/integration-tests/src/pubsub.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ pub async fn create_test_topic() -> Result<(TopicAdmin, Topic)> {
6666
.with_tracing()
6767
.build()
6868
.await?;
69-
let topic_id = random_topic_name(project);
69+
let topic_name = random_topic_name(project);
7070

7171
tracing::info!("testing create_topic()");
7272
let topic = client
7373
.create_topic()
74-
.set_name(topic_id)
74+
.set_name(topic_name)
7575
.set_labels([("integration-test", "true")])
7676
.send()
7777
.await?;

0 commit comments

Comments
 (0)