Skip to content

Commit

Permalink
fixed scraper test
Browse files Browse the repository at this point in the history
  • Loading branch information
shalper2 committed Feb 20, 2024
1 parent 85950b2 commit e2bc83f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions receiver/splunkenterprisereceiver/scraper_test.go
Expand Up @@ -53,9 +53,9 @@ func createMockServer() *httptest.Server {
switch r.URL.String() {
case "/services/server/introspection/indexer?output_mode=json":
mockIndexerThroughput(w, r)
case "/services/data/indexes-extended":
case "/services/data/indexes-extended?output_mode=json&count=-1":
mockIndexesExtended(w, r)
case "/services/server/introspection/queues":
case "/services/server/introspection/queues?output_mode=json&count=-1":
mockIntrospectionQueues(w, r)
default:
http.NotFoundHandler().ServeHTTP(w, r)
Expand Down

0 comments on commit e2bc83f

Please sign in to comment.