Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
alyssaruth committed Nov 9, 2024
1 parent f13e0c5 commit e59fca4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/test/kotlin/routes/session/SessionServiceTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ class SessionServiceTest : AbstractTest() {

@Test
fun `Should support finishing a session`() {
val sessionA = makeSession(ip = "1.2.3.4")
val sessionA = makeSession(name = "Alyssa")
val uscA = makeUserConnection(sessionA)

val sessionB = makeSession(ip = "5.6.7.8")
val sessionB = makeSession(name = "Leah")
val uscB = makeUserConnection(sessionB)
val (service, sessionStore, uscStore) = makeService()
sessionStore.putAll(sessionA, sessionB)
Expand Down

0 comments on commit e59fca4

Please sign in to comment.