Skip to content

Commit 80e07e0

Browse files
committed
Fix rebase errors
1 parent c10dd35 commit 80e07e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/epp/config/loader/configloader_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func TestLoadRawConfiguration(t *testing.T) {
5858
t.Parallel()
5959

6060
// Register known feature gates for validation.
61-
RegisterFeatureGate(datalayer.PrepareDataPluginsFeatureGate)
61+
RegisterFeatureGate(datalayer.ExperimentalDatalayerFeatureGate)
6262

6363
tests := []struct {
6464
name string
@@ -90,7 +90,7 @@ func TestLoadRawConfiguration(t *testing.T) {
9090
},
9191
},
9292
},
93-
FeatureGates: configapi.FeatureGates{datalayer.PrepareDataPluginsFeatureGate},
93+
FeatureGates: configapi.FeatureGates{datalayer.ExperimentalDatalayerFeatureGate},
9494
SaturationDetector: &configapi.SaturationDetector{
9595
QueueDepthThreshold: 10,
9696
KVCacheUtilThreshold: 0.8,
@@ -150,7 +150,7 @@ func TestInstantiateAndConfigure(t *testing.T) {
150150
// Not parallel because it modifies global plugin registry.
151151
registerTestPlugins(t)
152152

153-
RegisterFeatureGate(datalayer.PrepareDataPluginsFeatureGate)
153+
RegisterFeatureGate(datalayer.ExperimentalDatalayerFeatureGate)
154154

155155
tests := []struct {
156156
name string

0 commit comments

Comments
 (0)