Skip to content

Commit

Permalink
Try another thing
Browse files Browse the repository at this point in the history
  • Loading branch information
DeividasK committed Nov 26, 2024
1 parent 001c70d commit 5c26247
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ gcr_creds.env
go.work
go.work.sum

e2e/
e2e/
e2e/**/*
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func Deploy(sc *seth.Client) (*capabilitiesRegistry, error) {
return nil, err
}

fmt.Printf("🚀 Deployed \033[1mcapabilities_registry\033[0m contract at \033[1m%s\033[0m", capabilitiesRegistryAddress)
fmt.Printf("🚀 Deployed \033[1mcapabilities_registry\033[0m contract at \033[1m%s\033[0m\n", capabilitiesRegistryAddress)
return &capabilitiesRegistry{
sc: sc,
Address: capabilitiesRegistryAddress,
Expand Down
2 changes: 1 addition & 1 deletion e2e/components/evmcontracts/forwarder/forwarder.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func Deploy(sc *seth.Client) (*instance, error) {
return nil, err
}

fmt.Printf("🚀 Deployed \033[1mforwarder\033[0m contract at \033[1m%s\033[0m", forwarderAddress)
fmt.Printf("🚀 Deployed \033[1mforwarder\033[0m contract at \033[1m%s\033[0m\n", forwarderAddress)
return &instance{
sc: sc,
Address: forwarderAddress,
Expand Down
3 changes: 1 addition & 2 deletions e2e/tests/workflow_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,6 @@ func TestWorkflow(t *testing.T) {
bc.ChainID,
)
}
fmt.Println("bc.Nodes[0].DockerInternalWSUrl", bc.Nodes[0].DockerInternalWSUrl)
fmt.Println("bc.Nodes[0].DockerInternalHTTPUrl", bc.Nodes[0].DockerInternalHTTPUrl)

nodeset, err = ns.UpgradeNodeSet(in.NodeSet, bc, 5*time.Second)
require.NoError(t, err)
Expand Down Expand Up @@ -457,6 +455,7 @@ func TestWorkflow(t *testing.T) {
bc.ChainID,
nodesInfo[i].OcrKeyBundleID,
)
fmt.Println(`strings.TrimPrefix(nodeset.CLNodes[0].Node.DockerP2PUrl, "http://")`, strings.TrimPrefix(nodeset.CLNodes[0].Node.DockerP2PUrl, "http://"))
response, _, err2 = nodeClient.CreateJobRaw(consensusJobSpec)
assert.NoError(t, err2)
assert.Empty(t, response.Errors)
Expand Down

0 comments on commit 5c26247

Please sign in to comment.