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:
fox.cpp 2021-08-28 15:26:59 +03:00
parent 1de5f0bcdf
commit 9ea1a47c1c
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -111,18 +111,17 @@ func (c *Conn) Readln() (string, error) {
return c.Scanner.Text(), nil return c.Scanner.Text(), nil
} }
func (c *Conn) Expect(line string) error { func (c *Conn) Expect(line string) {
c.T.Helper() c.T.Helper()
actual, err := c.Readln() actual, err := c.Readln()
if err != nil { if err != nil {
return err c.T.Fatal("Unexpected I/O error:", err)
} }
if line != actual { if line != actual {
c.T.Fatalf("Response line not matching the expected one, want %q", line) 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 // ExpectPattern reads a line from the connection socket and checks whether is