Skip to content

Commit

Permalink
Fix the RemoteAddress js names
Browse files Browse the repository at this point in the history
  • Loading branch information
ankur22 committed Jan 30, 2025
1 parent d9c495b commit da0ad1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/js/modules/k6/browser/common/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -387,8 +387,8 @@ func (r *Request) URL() string {

// RemoteAddress contains informationa about a remote target.
type RemoteAddress struct {
IPAddress string `json:"ipAddress"`
Port int64 `json:"port"`
IPAddress string `json:"ipAddress" js:"ipAddress"`
Port int64 `json:"port" js:"port"`
}

// SecurityDetails contains informationa about the security details of a TLS connection.
Expand Down

0 comments on commit da0ad1a

Please sign in to comment.