mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-22 22:00:49 +01:00
Fix typos in msg_test.go
This commit is contained in:
parent
3afc3f2c35
commit
663954f370
1 changed files with 2 additions and 2 deletions
|
@ -1222,10 +1222,10 @@ func TestMsg_appendFile(t *testing.T) {
|
||||||
}
|
}
|
||||||
fl = m.appendFile(fl, f, nil)
|
fl = m.appendFile(fl, f, nil)
|
||||||
if len(fl) != 1 {
|
if len(fl) != 1 {
|
||||||
t.Errorf("appendFile() failed. Expected lenght: %d, got: %d", 1, len(fl))
|
t.Errorf("appendFile() failed. Expected length: %d, got: %d", 1, len(fl))
|
||||||
}
|
}
|
||||||
fl = m.appendFile(fl, f, nil)
|
fl = m.appendFile(fl, f, nil)
|
||||||
if len(fl) != 2 {
|
if len(fl) != 2 {
|
||||||
t.Errorf("appendFile() failed. Expected lenght: %d, got: %d", 2, len(fl))
|
t.Errorf("appendFile() failed. Expected length: %d, got: %d", 2, len(fl))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue