Skip to content

Commit

Permalink
Fixed syntax error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-wright committed Oct 16, 2015
1 parent 669ab2f commit f61123e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions email_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,9 @@ Testing!
if err != nil {
t.Fatalf("Error when parsing email %s", err.Error())
}
if !bytes.Equal(e.Text, []byte("Testing!")) {
t.Fatalf("Error incorrect text: %#q != %#q\n", e.Text, "Testing!")
}
}

// *Since the mime library in use by ```email``` is now in the stdlib, this test is deprecated
Expand Down

0 comments on commit f61123e

Please sign in to comment.