Skip to content

Commit 4fca0f3

Browse files
committed
updating unit test
Signed-off-by: Dhrubo Saha <[email protected]>
1 parent a3de26b commit 4fca0f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common/src/test/java/org/opensearch/ml/common/settings/MLCommonsSettingsTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public void testAllowModelUrlDisabledByDefault() {
7373

7474
@Test
7575
public void testAgenticMemoryDisabledByDefault() {
76-
assertFalse(MLCommonsSettings.ML_COMMONS_AGENTIC_MEMORY_ENABLED.getDefault(null));
76+
assertTrue(MLCommonsSettings.ML_COMMONS_AGENTIC_MEMORY_ENABLED.getDefault(null));
7777
}
7878

7979
@Test

common/src/test/java/org/opensearch/ml/common/settings/MLFeatureEnabledSettingTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public void testAgenticMemoryEnabledByDefault() {
158158
MLFeatureEnabledSetting setting = new MLFeatureEnabledSetting(mockClusterService, settings);
159159

160160
// Should be disabled by default
161-
assertFalse(setting.isAgenticMemoryEnabled());
161+
assertTrue(setting.isAgenticMemoryEnabled());
162162
}
163163

164164
@Test

0 commit comments

Comments
 (0)