Skip to content

Commit

Permalink
Fixed test [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
micheles committed Sep 20, 2024
1 parent f571064 commit 8d23525
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions openquake/calculators/tests/event_based_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,9 @@ def test_case_16(self):
# checking mea_tau_phi
df = self.calc.datastore.read_df('mea_tau_phi')
ae(len(df.rup_id.unique()), 12)
ae(df.site_id.unique(), [101, 108])
ae(df.gsim_id.unique(), [0, 3, 1])
ae(df.imt_id.unique(), [0, 1, 2])
ae(sorted(df.site_id.unique()), [101, 108])
ae(sorted(df.gsim_id.unique()), [0, 1, 3])
ae(sorted(df.imt_id.unique()), [0, 1, 2])
ae(len(df.mea.unique()), 54)
ae(len(df.tau.unique()), 7)
ae(len(df.phi.unique()), 7)
Expand Down

0 comments on commit 8d23525

Please sign in to comment.