Skip to content

Commit f6884c7

Browse files
committed
feat: Fix test
Signed-off-by: jdiaconu <jdiaconu@cisco.com>
1 parent f70f186 commit f6884c7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/internal/core/badge/a2a/discover_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func TestDiscover_should_add_wellknow_suffix(t *testing.T) {
3838
card := `{"name": "some_random_agent", "skills": []}`
3939

4040
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
41-
assert.Equal(t, "/.well-known/agent.json", r.URL.Path)
41+
assert.Equal(t, "/.well-known/agent-card.json", r.URL.Path)
4242
fmt.Fprint(w, card)
4343
}))
4444
defer ts.Close()

0 commit comments

Comments
 (0)