aboutsummaryrefslogtreecommitdiff
path: root/lib/smtp/command_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/smtp/command_test.go')
-rw-r--r--lib/smtp/command_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/smtp/command_test.go b/lib/smtp/command_test.go
index 46a84cec..950bd4cf 100644
--- a/lib/smtp/command_test.go
+++ b/lib/smtp/command_test.go
@@ -298,12 +298,12 @@ func TestUnpack(t *testing.T) {
cmd.reset()
err := cmd.unpack([]byte(c.b))
if err != nil {
- test.Assert(t, "error", c.expErr, err, true)
+ test.Assert(t, "error", c.expErr, err)
continue
}
- test.Assert(t, "Command.Kind", c.expCmd.Kind, cmd.Kind, true)
- test.Assert(t, "Command.Arg", c.expCmd.Arg, cmd.Arg, true)
- test.Assert(t, "Command.Params", c.expCmd.Params, cmd.Params, true)
+ test.Assert(t, "Command.Kind", c.expCmd.Kind, cmd.Kind)
+ test.Assert(t, "Command.Arg", c.expCmd.Arg, cmd.Arg)
+ test.Assert(t, "Command.Params", c.expCmd.Params, cmd.Params)
}
}