diff --git a/debounce/simple_debouncer_test.go b/debounce/simple_debouncer_test.go index fe8a0a0da..bc287934a 100644 --- a/debounce/simple_debouncer_test.go +++ b/debounce/simple_debouncer_test.go @@ -8,6 +8,7 @@ import ( // TestDebouncer tests that the debouncer allows only one function to execute at a time func TestSimpleDebouncer(t *testing.T) { + t.Skip("This test sometimes ends vai panic. Issue https://github.com/scylladb/gocql/pull/344") d := NewSimpleDebouncer() var executions int32 startedCh := make(chan struct{}, 1)