Skip to content

Commit 5fe5603

Browse files
authored
Fix tests (#1666)
1 parent 7a11d90 commit 5fe5603

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

integrations/mistral/tests/test_mistral_document_embedder.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ def test_to_dict(self, monkeypatch):
6868
"progress_bar": True,
6969
"meta_fields_to_embed": [],
7070
"embedding_separator": "\n",
71+
"http_client_kwargs": None,
7172
},
7273
}
7374

@@ -99,6 +100,7 @@ def test_to_dict_with_custom_init_parameters(self, monkeypatch):
99100
"progress_bar": False,
100101
"meta_fields_to_embed": ["test_field"],
101102
"embedding_separator": "-",
103+
"http_client_kwargs": None,
102104
},
103105
}
104106

integrations/mistral/tests/test_mistral_text_embedder.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ def test_to_dict(self, monkeypatch):
5050
"organization": None,
5151
"prefix": "",
5252
"suffix": "",
53+
"http_client_kwargs": None,
5354
},
5455
}
5556

@@ -73,6 +74,7 @@ def test_to_dict_with_custom_init_parameters(self, monkeypatch):
7374
"organization": None,
7475
"prefix": "START",
7576
"suffix": "END",
77+
"http_client_kwargs": None,
7678
},
7779
}
7880

0 commit comments

Comments
 (0)