Skip to content

Commit

Permalink
Fixed test error (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
beransantur committed Feb 19, 2024
1 parent 19a65f6 commit 20d1651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func Test_main(t *testing.T) {
binNumber, err := client.Installment.RetrieveBinNumber(context.Background(), "487074")
require.NotNil(t, err)
require.Nil(t, binNumber)
assert.Equal(t, true, strings.Contains(err.Error(), "API credential not found!"))
assert.Equal(t, true, strings.Contains(err.Error(), "API credential not found"))
})
})
}

0 comments on commit 20d1651

Please sign in to comment.