Skip to content

Commit

Permalink
Remove unnecessary test
Browse files Browse the repository at this point in the history
  • Loading branch information
bgyori committed Jul 30, 2024
1 parent 7a4d351 commit ee26958
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/test_metamodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,6 @@ def test_group_controlled(self):
self.assertIn(self.infected, t1.controllers)
self.assertIn(self.asymptomatic, t1.controllers)

def test_grouped_natural_conversion(self):
"""Test grouped natural conversions."""
template = GroupedNaturalConversion(subjects=[self.exposed], outcomes=[self.infected])
self.assertEqual([self.infected], template.outcomes)
self.assertEqual([self.exposed], template.subjects)

def test_natural_degradation(self):
t = NaturalDegradation(subject=self.infected)
self.assertEqual(self.infected, t.subject)
Expand Down

0 comments on commit ee26958

Please sign in to comment.