Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jinliu9508 committed Nov 16, 2023
1 parent a735dee commit c01861d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ class UserManagerTests : FunSpec({
test("getTags returns a copy of tags") {
// Given
val mockSubscriptionManager = mockk<ISubscriptionManager>()
val propertiesModelStore = MockHelper.propertiesModelStore { it.tags["my-tag-key1"] = "my-tag-value1" }
val propertiesModelStore = MockHelper.propertiesModelStore {
it.tags["my-tag-key1"] = "my-tag-value1"
}

val userManager = UserManager(mockSubscriptionManager, MockHelper.identityModelStore(), propertiesModelStore, MockHelper.languageContext())

Expand Down

0 comments on commit c01861d

Please sign in to comment.