Skip to content

Commit 35784bc

Browse files
committed
fix integration test that PR #1221 introduced
1 parent c2e46cb commit 35784bc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/integration/spring_boot_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ func testSpringBoot(platform switchblade.Platform, fixtures string) func(*testin
171171
Eventually(deployment).Should(matchers.Serve(ContainSubstring("Hello from Spring Boot")))
172172
})
173173

174-
it("verifies multiple frameworks (4) append JAVA_OPTS without overwriting each other", func() {
174+
it.Focus("verifies multiple frameworks (4) append JAVA_OPTS without overwriting each other", func() {
175175
deployment, logs, err := platform.Deploy.
176176
WithEnv(map[string]string{
177177
"BP_JAVA_VERSION": "17",
@@ -189,7 +189,7 @@ func testSpringBoot(platform switchblade.Platform, fixtures string) func(*testin
189189
// 4. JRebel - auto-detected via rebel-remote.xml in fixture
190190
Expect(logs.String()).To(ContainSubstring("Java Opts"))
191191
Expect(logs.String()).To(ContainSubstring("Container Security Provider"))
192-
Expect(logs.String()).To(ContainSubstring("debug="))
192+
Expect(logs.String()).To(ContainSubstring("Remote Debug"))
193193
Expect(logs.String()).To(ContainSubstring("JRebel"))
194194

195195
// Verify ALL opts from ALL frameworks are present at runtime (none were overwritten)
@@ -230,7 +230,7 @@ func testSpringBoot(platform switchblade.Platform, fixtures string) func(*testin
230230
// 4. JRebel - auto-detected via rebel-remote.xml in fixture
231231
Expect(logs.String()).To(ContainSubstring("Java Opts"))
232232
Expect(logs.String()).To(ContainSubstring("Container Security Provider"))
233-
Expect(logs.String()).To(ContainSubstring("debug="))
233+
Expect(logs.String()).To(ContainSubstring("Remote Debug"))
234234
Expect(logs.String()).To(ContainSubstring("JRebel"))
235235

236236
// Verify ALL opts are present: user's JAVA_OPTS + configured opts + ALL framework opts

0 commit comments

Comments
 (0)