-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WPB-2970 Update dependencies, cleanup, add unit test #25
WPB-2970 Update dependencies, cleanup, add unit test #25
Conversation
fe4cb02
to
fd8ecec
Compare
@@ -0,0 +1,6 @@ | |||
source-repository-package | |||
type: git | |||
location: https://gitlab.com/leif.battermann/tinylog.git |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would be nice to have a link to the upstream PR here so it's easier to check whether we can bump this (not urgent).
@@ -37,6 +38,7 @@ import qualified Web.Scim.Schema.Meta as Scim | |||
import qualified Web.Scim.Schema.Schema as Scim | |||
import qualified Web.Scim.Schema.User as Scim | |||
import qualified Web.Scim.Schema.User.Email as Scim | |||
import Prelude |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
either use relude
as before, but then don't use Prelude
from base, or toss relude
. both makes no sense.
it "map displayName userName externalId and email" $ do | ||
testMapping "George" "george" "george@nodomain" "george@nodomain" | ||
|
||
testMapping :: Text -> Text -> Text -> Text -> IO () |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice!
This is a clean-up PR for https://wearezeta.atlassian.net/browse/WPB-2970