Skip to content

Commit

Permalink
Fix expected error message in test
Browse files Browse the repository at this point in the history
  • Loading branch information
rod-hynes committed Aug 26, 2024
1 parent 38b6c0d commit a8413df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psiphon/common/inproxy/matcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ func runTestMatcher() error {
close(waitBeforeAnswer)

err = <-proxyResultChan
if err == nil || !strings.HasSuffix(err.Error(), "no client") {
if err == nil || !strings.HasSuffix(err.Error(), "no pending answer") {
return errors.Tracef("unexpected result: %v", err)
}

Expand Down

0 comments on commit a8413df

Please sign in to comment.