You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cf_cli_java_plugin_test.go
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -176,7 +176,7 @@ var _ = Describe("CfJavaPlugin", func() {
176
176
})
177
177
Expect(output).To(BeEmpty())
178
178
Expect(err).To(BeNil())
179
-
Expect(cliOutput).To(Equal("Successfully created heap dump in application container at: "+pluginUtil.Fspath+"/"+pluginUtil.OutputFileName+"|Heap dump will not be copied as parameter `local-dir` was not set|Heap dump file deleted in app container|"))
179
+
Expect(cliOutput).To(Equal("Successfully created heap dump in application container at: "+pluginUtil.Fspath+"/"+pluginUtil.OutputFileName+"|Heap dump file saved to: ./my_app-heapdump-"+pluginUtil.UUID+".hprof|Heap dump file deleted in application container|"))
@@ -200,7 +200,7 @@ var _ = Describe("CfJavaPlugin", func() {
200
200
201
201
Expect(output).To(BeEmpty())
202
202
Expect(err).To(BeNil())
203
-
Expect(cliOutput).To(Equal("Successfully created heap dump in application container at: "+pluginUtil.Fspath+"/"+pluginUtil.OutputFileName+"|Heap dump will not be copied as parameter `local-dir` was not set|Heap dump file deleted in app container|"))
203
+
Expect(cliOutput).To(Equal("Successfully created heap dump in application container at: "+pluginUtil.Fspath+"/"+pluginUtil.OutputFileName+"|Heap dump file saved to: ./my_app-heapdump-"+pluginUtil.UUID+".hprof|Heap dump file deleted in application container|"))
@@ -283,7 +283,7 @@ var _ = Describe("CfJavaPlugin", func() {
283
283
284
284
Expect(output).To(BeEmpty())
285
285
Expect(err).To(BeNil())
286
-
Expect(cliOutput).To(Equal("Successfully created heap dump in application container at: "+pluginUtil.Fspath+"/"+pluginUtil.OutputFileName+"|Heap dump will not be copied as parameter `local-dir` was not set|"))
286
+
Expect(cliOutput).To(Equal("Successfully created heap dump in application container at: "+pluginUtil.Fspath+"/"+pluginUtil.OutputFileName+"|Heap dump file saved to: ./my_app-heapdump-"+pluginUtil.UUID+".hprof|"))
0 commit comments