Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
pieroit committed Aug 28, 2023
1 parent 6ddbc1c commit dc2e9be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/tests/routes/embedder/test_embedder_setting.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ def test_get_all_embedder_settings(client):
expected_schema = EMBEDDER_SCHEMAS[setting["name"]]
assert dumps(jsonable_encoder(expected_schema)) == dumps(setting["schema"])

assert json["selected_configuration"] == None # no embedder configured at stratup
# automatically selected embedder
assert json["selected_configuration"] == "EmbedderDumbConfig"


def test_get_embedder_settings_non_existent(client):
Expand Down

0 comments on commit dc2e9be

Please sign in to comment.