Skip to content

Commit 7a11d90

Browse files
authored
Fix stackit tests (#1667)
1 parent 1355a7f commit 7a11d90

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

integrations/stackit/tests/test_stackit_document_embedder.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ def test_to_dict(self, monkeypatch):
6666
"progress_bar": True,
6767
"meta_fields_to_embed": [],
6868
"embedding_separator": "\n",
69+
"http_client_kwargs": None,
6970
},
7071
}
7172

@@ -97,6 +98,7 @@ def test_to_dict_with_custom_init_parameters(self, monkeypatch):
9798
"progress_bar": False,
9899
"meta_fields_to_embed": ["test_field"],
99100
"embedding_separator": "-",
101+
"http_client_kwargs": None,
100102
},
101103
}
102104

integrations/stackit/tests/test_stackit_text_embedder.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def test_to_dict(self, monkeypatch):
4848
"organization": None,
4949
"prefix": "",
5050
"suffix": "",
51+
"http_client_kwargs": None,
5152
},
5253
}
5354

@@ -71,6 +72,7 @@ def test_to_dict_with_custom_init_parameters(self, monkeypatch):
7172
"organization": None,
7273
"prefix": "START",
7374
"suffix": "END",
75+
"http_client_kwargs": None,
7476
},
7577
}
7678

0 commit comments

Comments
 (0)