Skip to content

Commit

Permalink
fix misspells
Browse files Browse the repository at this point in the history
  • Loading branch information
andefined committed Sep 18, 2021
1 parent bac7bb4 commit 9758331
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions twitter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var (
func Test_NewTwitter_Client(t *testing.T) {
api, err := twitter.NewTwitter(consumerKey, consumerSecret)
if err != nil {
t.Fatalf("Couldn't create Twitter API HTTPClient")
t.Fatalf("Couldn't create Twitter API HTTP Client")
}
if api.GetClient() == nil {
t.Fatalf("Twitter API HTTP Client returned nil")
Expand All @@ -31,7 +31,7 @@ func Test_NewTwitter_Client(t *testing.T) {
func Test_NewTwitterWithContext_Client(t *testing.T) {
api, err := twitter.NewTwitterWithContext(consumerKey, consumerSecret, accessToken, accessTokenSecret)
if err != nil {
t.Fatalf("Couldn't create Twitter API HTTPClient")
t.Fatalf("Couldn't create Twitter API HTTP Client")
}
if api.GetClient() == nil {
t.Fatalf("Twitter API HTTP Client returned nil")
Expand Down

0 comments on commit 9758331

Please sign in to comment.