Skip to content
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
8 changes: 4 additions & 4 deletions constructor/coordinator/coordinator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func TestProcess(t *testing.T) {
},
{
Type: job.SaveAccount,
Input: `{"account_identifier": {{account.account_identifier}}, "keypair": {{key.public_key}}}`,
Input: `{"account_identifier": {{account.account_identifier}}, "keypair": {{key}}}`,
},
},
},
Expand Down Expand Up @@ -1601,7 +1601,7 @@ func TestReturnFunds_NoBalance(t *testing.T) {
},
{
Type: job.SaveAccount,
Input: `{"account_identifier": {{account.account_identifier}}, "keypair": {{key.public_key}}}`,
Input: `{"account_identifier": {{account.account_identifier}}, "keypair": {{key}}}`,
},
},
},
Expand Down Expand Up @@ -1831,7 +1831,7 @@ func TestReturnFunds_NoWorkflow(t *testing.T) {
},
{
Type: job.SaveAccount,
Input: `{"account_identifier": {{account.account_identifier}}, "keypair": {{key.public_key}}}`,
Input: `{"account_identifier": {{account.account_identifier}}, "keypair": {{key}}}`,
},
},
},
Expand Down Expand Up @@ -1938,7 +1938,7 @@ func TestReturnFunds(t *testing.T) {
},
{
Type: job.SaveAccount,
Input: `{"account_identifier": {{account.account_identifier}}, "keypair": {{key.public_key}}}`,
Input: `{"account_identifier": {{account.account_identifier}}, "keypair": {{key}}}`,
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion constructor/worker/worker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,7 @@ func TestJob_ComplicatedTransfer(t *testing.T) {
},
{
Type: job.SaveAccount,
Input: `{"account_identifier": {{account.account_identifier}}, "keypair": {{key.public_key}}}`,
Input: `{"account_identifier": {{account.account_identifier}}, "keypair": {{key}}}`,
},
{
Type: job.PrintMessage,
Expand Down