nolint: testifylint // this is used inside go routines so it can't use `require.`
(t *testing.T, orchestrator *Orchestrator, version int32, config []byte)
| 562 | |
| 563 | // nolint: testifylint // this is used inside go routines so it can't use `require.` |
| 564 | func updateWithValidation(t *testing.T, orchestrator *Orchestrator, version int32, config []byte) { |
| 565 | resp := orchestrator.UpdateConfig(version, config) |
| 566 | assert.NoError(t, resp.Err) |
| 567 | assert.Equal(t, version, resp.LastAppliedVersion) |
| 568 | } |
| 569 | |
| 570 | // TestClosePreviousProxies makes sure proxies started in the previous configuration version are shutdown |
| 571 | func TestClosePreviousProxies(t *testing.T) { |
no test coverage detected