We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0527f2d commit 38834fbCopy full SHA for 38834fb
src/integration-tests/src/pubsub.rs
@@ -66,12 +66,12 @@ pub async fn create_test_topic() -> Result<(TopicAdmin, Topic)> {
66
.with_tracing()
67
.build()
68
.await?;
69
- let topic_id = random_topic_name(project);
+ let topic_name = random_topic_name(project);
70
71
tracing::info!("testing create_topic()");
72
let topic = client
73
.create_topic()
74
- .set_name(topic_id)
+ .set_name(topic_name)
75
.set_labels([("integration-test", "true")])
76
.send()
77
0 commit comments