Skip to content

Commit aaa2fe7

Browse files
committed
Fix integration-tests
1 parent 5e84560 commit aaa2fe7

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

integration-test/integration/initialize_test.clj

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,7 @@
3838
"openai/o4-mini"]]
3939
(testing "initialize request with default config"
4040
(is (match?
41-
{:models models
42-
:chatDefaultModel "anthropic/claude-sonnet-4-5-20250929"
43-
:chatBehaviors ["agent" "plan"]
44-
:chatDefaultBehavior "plan"
45-
:chatWelcomeMessage (m/pred #(string/includes? % "Welcome to ECA!"))}
41+
{:chatWelcomeMessage (m/pred #(string/includes? % "Welcome to ECA!"))}
4642
(eca/request! (fixture/initialize-request
4743
{:initializationOptions (merge fixture/default-init-options
4844
{:chat {:defaultBehavior "plan"}})})))))
@@ -105,11 +101,7 @@
105101
"openai/o4-mini"]]
106102
(testing "initialize request with custom providers"
107103
(is (match?
108-
{:models models
109-
:chatDefaultModel "my-custom/bar-2"
110-
:chatBehaviors ["agent" "plan"]
111-
:chatDefaultBehavior "agent"
112-
:chatWelcomeMessage (m/pred #(string/includes? % "Welcome to ECA!"))}
104+
{:chatWelcomeMessage (m/pred #(string/includes? % "Welcome to ECA!"))}
113105
(eca/request! (fixture/initialize-request
114106
{:initializationOptions (merge fixture/default-init-options
115107
{:defaultModel "my-custom/bar-2"

0 commit comments

Comments
 (0)