Skip to content

Commit

Permalink
help3
Browse files Browse the repository at this point in the history
  • Loading branch information
Lazar955 committed Sep 17, 2024
1 parent df8784e commit 8e24435
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion e2etest/test_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,14 @@ func StartManager(t *testing.T, numMatureOutputsInWallet uint32, epochInterval u
return true
}, eventuallyWaitTimeOut, eventuallyPollTime)

cmd := exec.Command("ls", "-a", cfg.Babylon.KeyDirectory)
cmd := exec.Command("ls", "-la", cfg.Babylon.KeyDirectory)
output, _ := cmd.Output()
require.NoError(t, err)
fmt.Printf("-------- %s", string(output))

err = os.Chmod(cfg.Babylon.KeyDirectory, 0777)
require.NoError(t, err)

return &TestManager{
TestRpcClient: testRpcClient,
BabylonClient: babylonClient,
Expand Down

0 comments on commit 8e24435

Please sign in to comment.