Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Sergiu Ghitea <[email protected]>
  • Loading branch information
ewanharris and sergiught committed Aug 11, 2023
1 parent ed1a58d commit 84b9185
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions authentication/passwordless_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func TestPasswordlessWithClientAssertion(t *testing.T) {

assert.NoError(t, err)
assert.Equal(t, "+123456789", r.PhoneNumber)
assert.Equal(t, true, r.PhoneVerified)
assert.True(t, r.PhoneVerified)
})

t.Run("Should support passing private key jwt auth", func(t *testing.T) {
Expand All @@ -184,6 +184,6 @@ func TestPasswordlessWithClientAssertion(t *testing.T) {

assert.NoError(t, err)
assert.Equal(t, "+123456789", r.PhoneNumber)
assert.Equal(t, true, r.PhoneVerified)
assert.True(t, r.PhoneVerified)
})
}

0 comments on commit 84b9185

Please sign in to comment.