Skip to content

Commit

Permalink
fix compile errors, again
Browse files Browse the repository at this point in the history
  • Loading branch information
davidangb committed Jan 7, 2025
1 parent a3bd5ef commit a668d3e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ class PostgresDirectoryDAOSpec extends RetryableAnyFreeSpec with Matchers with B
dao.updateSynchronizedDateAndVersion(subGroup, samRequestContext).unsafeRunSync()
dao.updateSynchronizedDateAndVersion(parentGroup, samRequestContext).unsafeRunSync()

val directCount = dao.countDirectGroupMemberships(defaultUser, samRequestContext).unsafeRunSync()
val directCount = dao.countDirectSynchronizedGroupMemberships(defaultUser, samRequestContext).unsafeRunSync()
directCount shouldBe 1
}
}
Expand All @@ -749,7 +749,7 @@ class PostgresDirectoryDAOSpec extends RetryableAnyFreeSpec with Matchers with B
dao.updateSynchronizedDateAndVersion(subGroup, samRequestContext).unsafeRunSync()
dao.updateSynchronizedDateAndVersion(parentGroup, samRequestContext).unsafeRunSync()

val indirectCount = dao.countIndirectGroupMemberships(defaultUser, samRequestContext).unsafeRunSync()
val indirectCount = dao.countIndirectSynchronizedGroupMemberships(defaultUser, samRequestContext).unsafeRunSync()
indirectCount shouldBe 2
}
}
Expand Down

0 comments on commit a668d3e

Please sign in to comment.