Skip to content

Commit

Permalink
wip(daemon): bob connects to alice
Browse files Browse the repository at this point in the history
  • Loading branch information
juligasa committed Aug 2, 2024
1 parent c3c4af0 commit 9e8e2a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/daemon/daemon_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,8 @@ func TestSyncingProfiles(t *testing.T) {
require.NoError(t, err)
fmt.Println("Alice Info", alice.Net.AddrInfo())
fmt.Println("Bob Info", bob.Net.AddrInfo())
_, err = alice.RPC.Networking.Connect(ctx, &networking.ConnectRequest{
Addrs: mttnet.AddrInfoToStrings(bob.Net.AddrInfo()),
_, err = bob.RPC.Networking.Connect(ctx, &networking.ConnectRequest{
Addrs: mttnet.AddrInfoToStrings(alice.Net.AddrInfo()),
})
require.NoError(t, err)

Expand Down

0 comments on commit 9e8e2a2

Please sign in to comment.