Skip to content

Commit

Permalink
fix: CurrentPersistenceIdsQuerySpec failing when testOnly (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-alfers authored Dec 18, 2023
1 parent 44e036a commit 46adcc6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class CurrentPersistenceIdsQuerySpec

private val zeros = "0000"
private val numberOfEntityTypes = 5
private val entityTypes = (1 to numberOfEntityTypes).map(_ => nextEntityType())
private val entityTypes = (1 to numberOfEntityTypes).map(n => "Entity" + zeros.drop(n.toString.length) + n)
private val numberOfPids = 100
private val pids = {
(1 to numberOfEntityTypes).flatMap(entityTypeId =>
Expand Down

0 comments on commit 46adcc6

Please sign in to comment.