style: format gateway e2e fixture
Some checks are pending
ci / proto (push) Waiting to run
ci / test (ubuntu-latest) (push) Waiting to run
ci / test (windows-latest) (push) Waiting to run
ci / race (push) Waiting to run
ci / integration (push) Waiting to run

This commit is contained in:
youfak 2026-08-02 08:11:40 +08:00
parent 8fdeb0a905
commit 7ebd655936

View File

@ -270,13 +270,13 @@ func proxyDescriptor(t *testing.T, id, rawURL string) proxyDomain.Proxy {
t.Fatalf("parse proxy port: %v", err)
}
return proxyDomain.Proxy{
ID: id,
Scheme: proxyDomain.Scheme(strings.ToLower(parsed.Scheme)),
Host: host,
Port: uint16(port),
SourceUpstream: "provider-a",
MaxConcurrency: 2,
State: proxyDomain.StateAvailable,
ID: id,
Scheme: proxyDomain.Scheme(strings.ToLower(parsed.Scheme)),
Host: host,
Port: uint16(port),
SourceUpstream: "provider-a",
MaxConcurrency: 2,
State: proxyDomain.StateAvailable,
}
}