Skip to content

Commit

Permalink
test: fix test error
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorwang committed Oct 29, 2023
1 parent 57062c1 commit 0768044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/openai_api_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ void main() {
final key = "sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
final openai = OpenaiConfig(apiKey: key);
expect(openai.apiKey, equals(key));
expect(openai.baseUrl, equals(Constants.kBaseUrl));
expect(openai.baseUrl, equals("${Constants.kBaseUrl}/v1"));
expect(openai.httpProxy, isNull);
});

Expand Down

0 comments on commit 0768044

Please sign in to comment.