Skip to content

Commit c6701cb

Browse files
committed
Change debugging print to exception
1 parent 6b288ed commit c6701cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/codegen/smoke-tests/src/test/kotlin/SmokeTestE2ETest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ private fun runSmokeTests(service: String, envVars: Map<String, String> = emptyM
5959
.bufferedReader()
6060
.forEachLine { output.append("$it\n") }
6161

62-
println(output.toString()) // TODO: Remove - this is here only for debugging CI tests
62+
throw Exception(output.toString()) // TODO: Remove - this is here only for debugging CI tests
6363
return output.toString()
6464
}

0 commit comments

Comments
 (0)