Skip to content

Commit

Permalink
fix url in integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
fearful-symmetry committed Sep 22, 2023
1 parent a4bd6ce commit 9dbb890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libbeat/idxmgmt/lifecycle/client_handler_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

//go:build integration
// //go:build integration

package lifecycle

Expand Down Expand Up @@ -158,7 +158,7 @@ func makeName(base string) string {
if err != nil {
panic(err)
}
return fmt.Sprintf("%v-%v", base, id.String())
return fmt.Sprintf("http://%v-%v", base, id.String())
}

func getURL() string {
Expand Down

0 comments on commit 9dbb890

Please sign in to comment.