(i, j int)
| 819 | func (evs eventsSortByKey) Len() int { return len(evs) } |
| 820 | func (evs eventsSortByKey) Swap(i, j int) { evs[i], evs[j] = evs[j], evs[i] } |
| 821 | func (evs eventsSortByKey) Less(i, j int) bool { |
| 822 | return bytes.Compare(evs[i].Kv.Key, evs[j].Kv.Key) < 0 |
| 823 | } |
| 824 | |
| 825 | func TestV3WatchMultipleEventsPutUnsynced(t *testing.T) { |
| 826 | integration.BeforeTest(t) |