Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
boks1971 committed Jan 11, 2024
1 parent f1d4028 commit 05856b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent_get_best_valid_candidate_pair_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func TestAgentGetBestValidCandidatePair(t *testing.T) {
candidatePair.state = CandidatePairStateSucceeded

actualBestPair := f.sut.getBestValidCandidatePair()
expectedBestPair := &CandidatePair{Remote: remoteCandidate, Local: f.hostLocal}
expectedBestPair := &CandidatePair{Remote: remoteCandidate, Local: f.hostLocal, state: CandidatePairStateSucceeded}

require.Equal(t, actualBestPair.String(), expectedBestPair.String())
}
Expand Down

0 comments on commit 05856b0

Please sign in to comment.