Skip to content

Commit

Permalink
[ML] Anomaly Detection: Fix test to reflect model memory limit change. (
Browse files Browse the repository at this point in the history
#65967) (#65984)

Adapt jest test mocks to consider update introduced in #65652.
  • Loading branch information
walterra authored May 11, 2020
1 parent 89dbb26 commit a7797bc
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ const callWithRequest: APICaller = (method: string) => {
if (method === 'fieldCaps') {
resolve({ fields: [] });
return;
} else if (method === 'ml.info') {
resolve({
limits: {
effective_max_model_memory_limit: '100MB',
max_model_memory_limit: '1GB',
},
});
}
resolve({});
}) as Promise<any>;
Expand Down

0 comments on commit a7797bc

Please sign in to comment.