Skip to content

Commit

Permalink
fix: fix test that check for spurious entities
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaGiulianelli committed Aug 25, 2022
1 parent e62f9f2 commit be863d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ object InfectionLogicTest extends SimpleTaskSuite:

test("External infection logic doesn't create spurious entities") {
for updatedEnv <- externalInfectionLogic(baseEnv)
yield expect(updatedEnv.allEntities.size == updatedEnv.allEntities.size)
yield expect(updatedEnv.allEntities.size == baseEnv.allEntities.size)
}

test("When the external infection logic is applied the number of external infected is more or equal") {
Expand Down

0 comments on commit be863d4

Please sign in to comment.