Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix failure IT
Browse files Browse the repository at this point in the history
Signed-off-by: zane-neo <zaniu@amazon.com>
zane-neo committed Jun 12, 2024
1 parent bf71571 commit 6b0abf7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -234,7 +234,7 @@ public void test_bedrock_multimodal_model_empty_imageInput_null_textInput() thro
MLInput mlInput = MLInput.builder().inputDataset(inputDataSet).algorithm(FunctionName.TEXT_EMBEDDING).build();
Map inferenceResult = predictTextEmbeddingModel(modelId, mlInput);
assertTrue(errorMsg, inferenceResult.containsKey("status"));
assertEquals(errorMsg, 400, Integer.parseInt(String.valueOf(inferenceResult.get("status"))));
assertTrue(errorMsg, String.valueOf(inferenceResult.get("status")).contains("400"));
assertTrue(errorMsg, inferenceResult.containsKey("error"));
assertTrue(errorMsg, inferenceResult.get("error") instanceof Map);
assertEquals(errorMsg, "illegal_argument_exception", ((Map<?, ?>) inferenceResult.get("error")).get("type"));

0 comments on commit 6b0abf7

Please sign in to comment.