Skip to content

Commit

Permalink
add log to inetgration test (#893)
Browse files Browse the repository at this point in the history
  • Loading branch information
aphralG authored Oct 8, 2024
1 parent 1ed2ee6 commit b3be362
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/integration/grpc_management_plane_api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ func setupConnectionTest(tb testing.TB, expectNoErrorsInLogs bool) func(tb testi
)
require.NoError(tb, err)
tb.Cleanup(func() {
require.NoError(tb, containerNetwork.Remove(ctx))
networkErr := containerNetwork.Remove(ctx)
tb.Logf("Error removing container network: %v", networkErr)
require.NoError(tb, networkErr)
})

mockManagementPlaneGrpcContainer = helpers.StartMockManagementPlaneGrpcContainer(
Expand Down

0 comments on commit b3be362

Please sign in to comment.