mirror of https://github.com/milvus-io/milvus.git
Add ut for AlterAlias with a short ctx (#13355)
Signed-off-by: dragondriver <jiquan.long@zilliz.com>pull/13414/head
parent
543cea2c62
commit
fafcd1e7ef
|
@ -2485,6 +2485,14 @@ func TestProxy(t *testing.T) {
|
|||
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.ErrorCode)
|
||||
})
|
||||
|
||||
wg.Add(1)
|
||||
t.Run("AlterAlias fail, timeout", func(t *testing.T) {
|
||||
defer wg.Done()
|
||||
resp, err := proxy.AlterAlias(shortCtx, &milvuspb.AlterAliasRequest{})
|
||||
assert.NoError(t, err)
|
||||
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.ErrorCode)
|
||||
})
|
||||
|
||||
wg.Wait()
|
||||
cancel()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue