diff --git a/test/integration.go b/test/integration.go index 670b5bbf..3549525f 100644 --- a/test/integration.go +++ b/test/integration.go @@ -225,7 +225,7 @@ func (r *Runner) startEgress(t *testing.T, req *rpc.StartEgressRequest) string { func (r *Runner) sendRequest(t *testing.T, req *rpc.StartEgressRequest) *livekit.EgressInfo { // send start request - info, err := r.start(context.Background(), req) + info, err := r.StartEgress(context.Background(), req) // check returned egress info require.NoError(t, err) diff --git a/test/room_composite.go b/test/room_composite.go index 3ae8c149..5a434e8c 100644 --- a/test/room_composite.go +++ b/test/room_composite.go @@ -169,7 +169,7 @@ func (r *Runner) testRoomCompositeStream(t *testing.T) { }, } - info, err := r.start(context.Background(), req) + info, err := r.StartEgress(context.Background(), req) require.NoError(t, err) require.Empty(t, info.Error) require.NotEmpty(t, info.EgressId)