Merge pull request #123994 from serathius/undo-double-run-test-watch-semantics
Undo double run of the TestWatchSemantics test to avoid hitting timeout Kubernetes-commit: fe9e4698a33565e9d334439f3a6e494366d8ee8d
This commit is contained in:
commit
2a4a82c50e
|
|
@ -381,18 +381,9 @@ func TestSendInitialEventsBackwardCompatibility(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestWatchSemantics(t *testing.T) {
|
||||
t.Run("WatchFromStorageWithoutResourceVersion=true", func(t *testing.T) {
|
||||
defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.WatchFromStorageWithoutResourceVersion, true)()
|
||||
store, terminate := testSetupWithEtcdAndCreateWrapper(t)
|
||||
t.Cleanup(terminate)
|
||||
storagetesting.RunWatchSemantics(context.TODO(), t, store)
|
||||
})
|
||||
t.Run("WatchFromStorageWithoutResourceVersion=false", func(t *testing.T) {
|
||||
defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.WatchFromStorageWithoutResourceVersion, false)()
|
||||
store, terminate := testSetupWithEtcdAndCreateWrapper(t)
|
||||
t.Cleanup(terminate)
|
||||
storagetesting.RunWatchSemantics(context.TODO(), t, store)
|
||||
})
|
||||
store, terminate := testSetupWithEtcdAndCreateWrapper(t)
|
||||
t.Cleanup(terminate)
|
||||
storagetesting.RunWatchSemantics(context.TODO(), t, store)
|
||||
}
|
||||
|
||||
func TestWatchSemanticInitialEventsExtended(t *testing.T) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue