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 1e9e9aa commit 732788aCopy full SHA for 732788a
src/Tests/Nest.Tests.Integration/Core/Repository/RestoreTests.cs
@@ -132,8 +132,7 @@ public void SnapshotRestore_IndexSettings()
132
133
var indexSettingsResponse = this.Client.GetIndexSettings(descriptor => descriptor.Index(_restoredIndexName));
134
indexSettingsResponse.IsValid.Should().BeTrue();
135
- indexSettingsResponse.IndexSettings.Settings[UpdatableSettings.RefreshInterval].Should().Be("123s");
136
- indexSettingsResponse.IndexSettings.Settings[UpdatableSettings.BlocksWrite].Should().BeNull();
+ indexSettingsResponse.IndexSettings.Settings["refresh_interval"].Should().Be("123s");
137
}
138
139
[Test]
0 commit comments