mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 05:07:38 +03:00
tests: Change Conn.Expect to not return an error
To get rid of a bunch of "error value is not checked" warnings.
This commit is contained in:
parent
1de5f0bcdf
commit
9ea1a47c1c
1 changed files with 2 additions and 3 deletions
|
@ -111,18 +111,17 @@ func (c *Conn) Readln() (string, error) {
|
|||
return c.Scanner.Text(), nil
|
||||
}
|
||||
|
||||
func (c *Conn) Expect(line string) error {
|
||||
func (c *Conn) Expect(line string) {
|
||||
c.T.Helper()
|
||||
|
||||
actual, err := c.Readln()
|
||||
if err != nil {
|
||||
return err
|
||||
c.T.Fatal("Unexpected I/O error:", err)
|
||||
}
|
||||
|
||||
if line != actual {
|
||||
c.T.Fatalf("Response line not matching the expected one, want %q", line)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// ExpectPattern reads a line from the connection socket and checks whether is
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue