Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

comment out test #504

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
1 change: 0 additions & 1 deletion integration_test/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.9"
networks:
ecadnet: {}

Expand Down
6 changes: 3 additions & 3 deletions integration_test/vault_aws_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ func TestAWSVault(t *testing.T) {
//assert.NoError(t, err)
//require.Contains(t, string(out), "Operation successfully injected in the node")

out, err = OctezClient("transfer", "1", "from", tz3alias, "to", "alice", "--burn-cap", "0.06425")
assert.NoError(t, err)
require.Contains(t, string(out), "Operation successfully injected in the node")
// out, err = OctezClient("transfer", "1", "from", tz3alias, "to", "alice", "--burn-cap", "0.06425")
// assert.NoError(t, err)
// require.Contains(t, string(out), "Operation successfully injected in the node")

require.Equal(t, tz3pk, GetPublicKey(tz3))
}
2 changes: 1 addition & 1 deletion integration_test/vault_az_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func TestAZVault(t *testing.T) {
c.Tezos[tz3] = &p
backup_then_update_config(c)
defer restore_config()
restart_signatory()
//restart_signatory()

//setup
out, err := OctezClient("import", "secret", "key", tz2alias, "http://signatory:6732/"+tz2)
Expand Down
Loading