Skip to content

Commit

Permalink
Fix TestObfuscatedRemoteServerLists
Browse files Browse the repository at this point in the history
  • Loading branch information
rod-hynes committed Apr 29, 2024
1 parent b070a52 commit 603cd25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions psiphon/remoteServerList_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ func testObfuscatedRemoteServerLists(t *testing.T, omitMD5Sums bool) {
t.Fatalf("unexpected server entries")
}

seedState := oslConfig.NewClientSeedState("", propagationChannelID, nil, nil)
seedPortForward := seedState.NewClientSeedPortForward(net.ParseIP("0.0.0.0"))
seedState := oslConfig.NewClientSeedState("", propagationChannelID, nil)
seedPortForward := seedState.NewClientSeedPortForward(net.ParseIP("0.0.0.0"), nil)
seedPortForward.UpdateProgress(1, 1, 1)
payload := seedState.GetSeedPayload()
if len(payload.SLOKs) != 1 {
Expand Down

0 comments on commit 603cd25

Please sign in to comment.