Skip to content

Commit cce38a6

Browse files
authored
fix: don't throw error for test (GoogleCloudPlatform#8433)
* fix: don't throw error for test * debug * force secret version * Update run_tests.sh * remove debug
1 parent fee7064 commit cce38a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run/filesystem/src/test/java/com/example/filesystem/ApplicationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public static void setup() throws Exception {
108108
"--format=value(status.url)");
109109
baseUrl = IOUtils.toString(getUrl.start().getInputStream(), StandardCharsets.UTF_8).trim();
110110
if (baseUrl == null || baseUrl.equals("")) {
111-
throw new RuntimeException("Base URL not found.");
111+
assertTrue("Base URL not found.", false);
112112
}
113113

114114
// Get Token

0 commit comments

Comments
 (0)