Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,11 @@ internal class EmbraceSessionPropertiesTest {
}
assertFalse(
"should not be able to add new key when limit is hit",
sessionProperties.add("propNew", VALUE_VALID, true)
sessionProperties.add("propPermNew", VALUE_VALID, true)
)
assertFalse(
"should not be able to add new key when limit is hit",
sessionProperties.add("propTempNew", VALUE_VALID, false)
)
val otherValue = "other"
assertTrue(
Expand Down Expand Up @@ -180,7 +184,11 @@ internal class EmbraceSessionPropertiesTest {
}
assertFalse(
"should not be able to add new key when limit is hit",
sessionProperties.add("propNew", VALUE_VALID, true)
sessionProperties.add("propPermNew", VALUE_VALID, true)
)
assertFalse(
"should not be able to add new key when limit is hit",
sessionProperties.add("propTempNew", VALUE_VALID, false)
)
val otherValue = "other"
assertTrue(
Expand Down
Loading