From 208328dd4bcd9c2f54729f580eccfa86a63b6bc7 Mon Sep 17 00:00:00 2001 From: Kanishka Gunawardana <83855665+KATTA-00@users.noreply.github.com> Date: Mon, 12 Aug 2024 14:56:33 +0530 Subject: [PATCH] Update ballerina/tests/test.bal Co-authored-by: Ayesh Almeida <77491511+ayeshLK@users.noreply.github.com> --- ballerina/tests/test.bal | 3 --- 1 file changed, 3 deletions(-) diff --git a/ballerina/tests/test.bal b/ballerina/tests/test.bal index 419c85f..d1110cd 100644 --- a/ballerina/tests/test.bal +++ b/ballerina/tests/test.bal @@ -53,11 +53,8 @@ function dataGen() returns TestData[][] { dataProvider: dataGen } isolated function testListModels(TestData testData) returns error? { - ListModelsResponse modelsResponse = check openaiFinetunes->/models.get(); - testData.modelId = "gpt-3.5-turbo"; - test:assertEquals(modelsResponse.'object, "list", "Object type mismatched"); test:assertTrue(modelsResponse.hasKey("data"), "Response does not have the key 'data'"); }