Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clients/go/client/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func (f *Feature) GetRESTAddr() string {

// Config is the struct for the config.yaml setup file
// todo: move this to a more common place, outside just tests
// todo: can be moved to proto defination
// todo: can be moved to proto definition
type Config struct {
Chains []*Chain `name:"chains" json:"chains" yaml:"chains"`
Relayers []*Relayer `name:"relayers" json:"relayers" yaml:"relayers"`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ sleep 2
kubectl get pods --no-headers -o custom-columns=:metadata.name
helm delete osmojs
kubectl get pods --no-headers -o custom-columns=:metadata.name
Log: All pods have been sucessfully terminated!"
Log: All pods have been successfully terminated!"
`;

exports[`StarshipClient setup 2`] = `
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ sleep 2
kubectl get pods --no-headers -o custom-columns=:metadata.name
helm delete osmojs
kubectl get pods --no-headers -o custom-columns=:metadata.name
Log: All pods have been sucessfully terminated!"
Log: All pods have been successfully terminated!"
`;

exports[`StarshipClient setup 2`] = `
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ sleep 2
kubectl get pods --no-headers -o custom-columns=:metadata.name
helm delete osmojs
kubectl get pods --no-headers -o custom-columns=:metadata.name
Log: All pods have been sucessfully terminated!"
Log: All pods have been successfully terminated!"
`;

exports[`StarshipClient setup 2`] = `
Expand Down
2 changes: 1 addition & 1 deletion starship/cmd/starship/connect.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func (c *Client) CheckKubectl() error {
return nil
}

// CheckPortForward verfify if all pods are in running state, and ready to be port-forwarded
// CheckPortForward verify if all pods are in running state, and ready to be port-forwarded
// * perform kubectl get pods
// * check status of pods to be running based on the config
// * return error if port-forwarding is not ready
Expand Down
2 changes: 1 addition & 1 deletion starship/tests/e2e/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type Feature struct {

// Config is the struct for the config.yaml setup file
// todo: move this to a more common place, outside of just tests
// todo: can be moved to proto defination
// todo: can be moved to proto definition
type Config struct {
Chains []*Chain `name:"chains" json:"chains" yaml:"chains"`
Relayers []*Relayer `name:"relayers" json:"relayers" yaml:"relayers"`
Expand Down
Loading