diff --git a/service/test/integration1_test.go b/service/test/integration1_test.go index 8b5afdab..3cb3a995 100644 --- a/service/test/integration1_test.go +++ b/service/test/integration1_test.go @@ -728,7 +728,7 @@ func Test1ClientServer_FullStacktrace(t *testing.T) { assertNoError(err, t, "GoroutinesInfo()") found := make([]bool, 10) for _, g := range gs { - frames, err := c.Stacktrace(g.ID, 10, true) + frames, err := c.Stacktrace(g.ID, 40, true) assertNoError(err, t, fmt.Sprintf("Stacktrace(%d)", g.ID)) t.Logf("goroutine %d", g.ID) for i, frame := range frames { diff --git a/service/test/integration2_test.go b/service/test/integration2_test.go index e0468a6b..5cab11d8 100644 --- a/service/test/integration2_test.go +++ b/service/test/integration2_test.go @@ -923,7 +923,7 @@ func TestClientServer_FullStacktrace(t *testing.T) { assertNoError(err, t, "GoroutinesInfo()") found := make([]bool, 10) for _, g := range gs { - frames, err := c.Stacktrace(g.ID, 10, 0, &normalLoadConfig) + frames, err := c.Stacktrace(g.ID, 40, 0, &normalLoadConfig) assertNoError(err, t, fmt.Sprintf("Stacktrace(%d)", g.ID)) t.Logf("goroutine %d", g.ID) for i, frame := range frames {