Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
should be fine
  • Loading branch information
JintaoWu98 committed Oct 16, 2024
1 parent a725847 commit d7aa5ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arc/checks/common_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ def test_get_i_from_job_name(self):
"""Test the get_i_from_job_name() function"""
self.assertIsNone(common.get_i_from_job_name(''))
self.assertIsNone(common.get_i_from_job_name('some_job_name'))
self.assertEqual(common.get_i_from_job_name('conformer3'), 3)
self.assertEqual(common.get_i_from_job_name('conformer33'), 33)
self.assertEqual(common.get_i_from_job_name('conformer3355'), 3355)
self.assertEqual(common.get_i_from_job_name('conf_opt_3'), 3)
self.assertEqual(common.get_i_from_job_name('conf_opt_33'), 33)
self.assertEqual(common.get_i_from_job_name('conf_opt_3355'), 3355)
self.assertEqual(common.get_i_from_job_name('tsg2'), 2)


Expand Down

0 comments on commit d7aa5ad

Please sign in to comment.