We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f70f186 commit f6884c7Copy full SHA for f6884c7
1 file changed
backend/internal/core/badge/a2a/discover_test.go
@@ -38,7 +38,7 @@ func TestDiscover_should_add_wellknow_suffix(t *testing.T) {
38
card := `{"name": "some_random_agent", "skills": []}`
39
40
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
41
- assert.Equal(t, "/.well-known/agent.json", r.URL.Path)
+ assert.Equal(t, "/.well-known/agent-card.json", r.URL.Path)
42
fmt.Fprint(w, card)
43
}))
44
defer ts.Close()
0 commit comments