From 531d2f9f65031175049156ad1366b39fdd8acd09 Mon Sep 17 00:00:00 2001 From: Tianzi Cai Date: Fri, 15 May 2020 14:38:15 -0700 Subject: [PATCH] fix broken link in readme --- samples/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/README.md b/samples/README.md index a5b1da67b..87b54035e 100644 --- a/samples/README.md +++ b/samples/README.md @@ -6,7 +6,7 @@ However, tests require an additional environment variable `GOOGLE_CLOUD_PROJECT_NUMBER` to run. For instance, -In [`UpdateTopicExampleIT.java`](snippets/src/test/java/pubsublite/UpdateTopicExampleIT.java): +In [`QuickStartIT.java`](snippets/src/test/java/pubsublite/QuickStartIT.java): ```java private static final String GOOGLE_CLOUD_PROJECT_NUMBER = @@ -16,12 +16,12 @@ Here, the program needs you to provide your [Google Cloud Project Number](https: To run a sample's integration test in Cloud Shell: -1. `cd samples/snippets` - all samples are located in `java-pubsublite/samples/snippets` directory. +1. `cd samples/` - all samples are located in `java-pubsublite/samples/snippets` directory. 1. `mvn clean -Dtest=QuickStartIT test` - this runs the integration test for `UpdateTopicExample.java`. To run a sample, update the developer's TODO section in the snippet, then: -1. `cd samples/snippets` - all samples are located in `java-pubsublite/samples/snippets` directory. +1. `cd samples/snippets/` - all samples are located in `java-pubsublite/samples/snippets` directory. 1. `mvn compile exec:java -Dexec.mainClass=pubsublite.ListTopicsExample` - this should list the topics in your project.