The TestUtilities class is using the equivalent of the User class' "name" field when retrieving the name from auth.authValue(). If a username has an upper case letter (e.g. JoeSmith) then the tests will fail because the user.slug() is all lower case (joesmith). Using user.name seems to fix this - PR forthcoming.
The TestUtilities class is using the equivalent of the
User
class' "name" field when retrieving the name fromauth.authValue()
. If a username has an upper case letter (e.g. JoeSmith) then the tests will fail because theuser.slug()
is all lower case (joesmith). Using user.name seems to fix this - PR forthcoming.