Skip to content

Commit

Permalink
additional annoying trailing comma fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
hannibal002 committed Jun 9, 2024
1 parent 0779c9f commit c10ec8e
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ class VisitorListenerTest {
" §r§fJacob",
"ThePlayerName",
"",
)
)
),
),
)

verify { VisitorAPI.addVisitor("§fJacob") }
Expand All @@ -59,8 +59,8 @@ class VisitorListenerTest {

listener.onTabListUpdate(
fakeTabWidget(
mutableListOf("§b§lVisitors: §r§f(0)", "")
)
mutableListOf("§b§lVisitors: §r§f(0)", ""),
),
)

verify { VisitorAPI.removeVisitor("§fJacob") }
Expand All @@ -76,8 +76,8 @@ class VisitorListenerTest {

listener.onTabListUpdate(
fakeTabWidget(
mutableListOf("§b§lVisitors: §r§f(0)", "")
)
mutableListOf("§b§lVisitors: §r§f(0)", ""),
),
)

verify(exactly = 0) { VisitorAPI.removeVisitor("§fJacob") }
Expand Down

0 comments on commit c10ec8e

Please sign in to comment.