Skip to content

Commit

Permalink
Minor changes to mock responses
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewelwell committed Oct 4, 2024
1 parent 2d62268 commit 95b6de0
Showing 1 changed file with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,13 @@ object MockResponses {
"traits": [
{
"trait_value": "12345",
"trait_key": "set-from-client"
"trait_key": "set-from-client",
"transient": false
},
{
"trait_value": "electric pink",
"trait_key": "favourite-colour"
"trait_key": "favourite-colour",
"transient": false
}
]
}
Expand All @@ -144,15 +146,14 @@ object MockResponses {
{
"trait_value": "12345",
"trait_key": "set-from-client",
"transient": false
"transient": true
},
{
"trait_value": "electric pink",
"trait_key": "favourite-colour",
"transient": true
}
],
"transient": true
]
}
""".trimIndent()

Expand Down Expand Up @@ -195,7 +196,8 @@ object MockResponses {
"traits": [
{
"trait_value": "12345",
"trait_key": "set-from-client"
"trait_key": "set-from-client",
"transient": false
}
]
}
Expand All @@ -208,7 +210,8 @@ object MockResponses {
"traits": [
{
"trait_value": "12345",
"trait_key": "set-from-client"
"trait_key": "set-from-client",
"transient": false
}
]
}
Expand Down

0 comments on commit 95b6de0

Please sign in to comment.