We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a87437d commit 6991973Copy full SHA for 6991973
embedded_client_test.go
@@ -642,6 +642,8 @@ func TestEmbeddedClient_DMap_Put_PX_With_NX(t *testing.T) {
642
}
643
644
func TestEmbeddedClient_Issue263(t *testing.T) {
645
+ initNumRoutines := runtime.NumGoroutine()
646
+
647
cluster := newTestOlricCluster(t)
648
db := cluster.addMember(t)
649
@@ -676,6 +678,8 @@ func TestEmbeddedClient_Issue263(t *testing.T) {
676
678
677
679
cancel()
680
681
+ assert.Equal(t, initNumRoutines, runtime.NumGoroutine())
682
683
runtime.GC()
684
time.Sleep(time.Second)
685
0 commit comments